Is amazon IAP plugin functioning? Build 2802

Hi,

I’ve been trying to update an app, which has not been updated in over a year in amazon. When I upload the app to an android device the game opens but seem to fail on store init. The app simply hangs.

Has there a major change in the way we need to build an app for amazon store? I didn’t see any update or new requirements.

Has someone published for amazon recently ???

The iap plugin is not working on any of my devices.

Hi @rune7,

I’m not aware of any breaking changes, but we’ll need more info to diagnose. Can you gather any crash/error info from the log?

Brent

I have been working with Amazon IAPs with no problem in test mode.  You set up the SDK tester and IAP json file on the devices?  It sounds like what happens when you don’t have these set up properly.

Hi tonygod, thanks for responding. I have a different version of the tester. the one in the link is unavailable to download and it says its deprecated. Are we still using the old API version? If yes, where can I can the old tester app? 

I’ve found an old sdk tester but it does not fit android 5. Do you know where can I get the updated version?

Finally found it. If anyone is having problems running with Amazon IAP plugin, try placing it in a small delay timer. It appear the plugin is dependent on some internal libs which may not load in time if the plugin is called immediately when the game loads. It used to work a year ago, but I guess some internals have changed.

Simply use something like this to circumvent the issue:

 timer.performWithDelay(100, function() store.init (transactionCallback) end)

Has someone published for amazon recently ???

The iap plugin is not working on any of my devices.

Hi @rune7,

I’m not aware of any breaking changes, but we’ll need more info to diagnose. Can you gather any crash/error info from the log?

Brent

I have been working with Amazon IAPs with no problem in test mode.  You set up the SDK tester and IAP json file on the devices?  It sounds like what happens when you don’t have these set up properly.

Hi tonygod, thanks for responding. I have a different version of the tester. the one in the link is unavailable to download and it says its deprecated. Are we still using the old API version? If yes, where can I can the old tester app? 

I’ve found an old sdk tester but it does not fit android 5. Do you know where can I get the updated version?

Finally found it. If anyone is having problems running with Amazon IAP plugin, try placing it in a small delay timer. It appear the plugin is dependent on some internal libs which may not load in time if the plugin is called immediately when the game loads. It used to work a year ago, but I guess some internals have changed.

Simply use something like this to circumvent the issue:

 timer.performWithDelay(100, function() store.init (transactionCallback) end)