I have made an android app for amazon with in-app feature. Now I need to make my app live. My question is do I need to change any SKU string or so before uploading my app online? While testing my app, I had added a json file and an Sku string in my code, what do I replace them with?
Set<String>skuList = new HashSet<String>(1);
skuList.add(getResources().getString(R.string.consumable_sku));
PurchasingManager.initiateItemDataRequest(skuList);
Also, while initiating Purchase Response this skuString is being used.
PurchasingManager.initiatePurchaseRequest(skuString);