Amazon In-app purchase
has anybody tried implementing amazon's in-app purchase? I'm having problem implementing the example on their site. below example, it's giving me INVALID_SKU response: when purchase is initiated, PurchasingManager.initiateItemDataRequest("DeveloperSKU-1234"); the response of above will be recieved by below code: public void onPurchaseResponse(final PurchaseResponse purchaseResponse) { Log.v(TAG, "onPurchaseResponse recieved"); Log.v(TAG, "PurchaseRequestStatus:" + purchaseResponse.getPurchaseRequestStatus()); } unfortunately, i always got "PurchaseRequestStatus:INVALID_SKU". any of you knows