am 72159ab0: Merge "docs: Fixed declarations for ArrayList<String> variables...
am 72159ab0: Merge "docs: Fixed declarations for ArrayList<String> variables in the IAB V3 code snippets. Bug: 9316251" into klp-docs
* commit '72159ab0':
docs: Fixed declarations for ArrayList<String> variables in the IAB V3 code snippets. Bug: 9316251
@@ -174,7 +174,7 @@ Products</a> training class and associated sample.</p>
<h3 id="QueryDetails">Querying for Items Available for Purchase</h3>
<p>In your application, you can query the item details from Google Play using the In-app Billing Version 3 API. To pass a request to the In-app Billing service, first create a {@link android.os.Bundle} that contains a String {@link java.util.ArrayList} of product IDs with key "ITEM_ID_LIST", where each string is a product ID for an purchasable item.</p>
<pre>
ArrayList<String> skuList = new ArrayList<String>();
ArrayList<String> skuList = new ArrayList<String> ();