I need to get sku price. 10 skus placed in dev. console. Using this code I can get only information about purchased items.
Bundle querySkus = new Bundle();
querySkus.putStringArrayList(GET_SKU_DETAILS_ITEM_LIST, skuList);
Bundle skuDetails = mService.getSkuDetails(3,
mContext.getPackageName(), itemType, querySkus);
...
ArrayList<String> responseList = skuDetails
.getStringArrayList(RESPONSE_GET_SKU_DETAILS_LIST);
// ONLY 2 PURCHASED ITEMS HERE!!!
logDebug("Skus count: " + responseList.size());
for (String thisResponse : responseList) {
SkuDetails d = new SkuDetails(itemType, thisResponse);
logDebug("Got sku details: " + d);
inv.addSkuDetails(d);
}
So, how to get the price for non-purchased skus?