Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am trying to develope in app for amazon in android. at this time i download a code from amazon sample code and this i,plement this in my app. On running app on Kindle Fire i recived these responses:

but after sending request it not proceed further.No response generate. My app purchase type is entitlement and i am trying to test it on server.and i am not using amazon in app testing technique. For thisi also add my app on my amazon developer account.

share|improve this question

2 Answers

As documented by Amazon - if your app was not pushed through their App Store, it won't talk to the server. You need to install the IAP SDK Tester and the associated data file for testing.

share|improve this answer

In my case, SDK Tester was set up and everything worked fine with the sample ButtonClickerActivity included in the SDK.

I've just forgot to add the following lines to my manifest file:

        <receiver android:name="com.amazon.inapp.purchasing.ResponseReceiver">
            <intent-filter>
                <action android:name="com.amazon.inapp.purchasing.NOTIFY"
                    android:permission="com.amazon.inapp.purchasing.Permission.NOTIFY" />
            </intent-filter>
        </receiver>

This answer helped me: http://stackoverflow.com/a/13150932/1758701

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.