Hello all,
Sorry if this has been answered, but I did not manage to find any recent posts that helped us with the issue.
We are in build 1202 of Corona SDK, and our app works with Google and Apple stores just fine, no issues. However, when we put in Amazon iAP it freezes on startup. I’ve narrowed down the location to where this is happening with pop-ups:
store = require "plugin.amazon.iap" store.init( transactionCallback )
basically, at one of these two lines.
our build.settings:
["plugin.amazon.iap"] = { -- required publisherId = "com.amazon", },
What could it be that is causing the app to freeze? Is there a permission or certain plugin that interferes with the Amazon plugin that anyone knows of? Note that the callback passed into store.init is the same we have used for Apple and Google stores… so it’s in and it works for those two stores (figured it’d be unnecessary to include the whole function because of this).