Hi everyone,
I’m just updating my app to work with Amazon IAP v2. I’ve uploaded my binary to the Amazon developer console, and the app has been scanned, and in the Device Support section I’m getting the following mesage:
Device support:
Amazon phones and tablets - Supported (0), Excluded (0), Unsupported (18)
Amazon Fire TV devices - Supported (0), Excluded (0), Unsupported (3)
Non-Amazon Android devices - Supported (212+), Excluded(0), Unsupported (0)
based on your Android manifest.
I am definitely building for Amazon. Has anyone come across this before? It looks like my app will work on any phone in the Amazon store, as long as it isn’t Amazon’s.
(I’m not bothered about the TV devices - I’ve included them in the above for completeness).
My build.settings looks like this:
-- Supported values for orientation: -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight settings = { orientation = { default = "portrait", content = "portrait", supported = { "portrait" } }, iphone = { plist = { UIApplicationExitsOnSuspend = false, UIStatusBarHidden = true, UIPrerenderedIcon = true, -- set to false for "shine" overlay --UIApplicationExitsOnSuspend = true, -- uncomment to quit app on suspend UIAppFonts = { "XXX.ttf" }, CFBundleIconFile = "Icon.png", CFBundleIconFiles = { "Icon.png", "Icon@2x.png", "Icon-60.png", "Icon-60@2x.png", "Icon-60@3x.png", "Icon-72.png", "Icon-72@2x.png", "Icon-76.png", "Icon-76@2x.png", "Icon-Small-40.png", "Icon-Small-40@2x.png", "Icon-Small-40@3x.png", "Icon-Small-50.png", "Icon-Small-50@2x.png", "Icon-Small.png", "Icon-Small@2x.png", "Icon-Small@3x.png" }, -- iOS app URL schemes: FacebookAppID="XXXX", CFBundleURLTypes = { { CFBundleURLSchemes = { "XXXX", } } } } }, -- Android permissions android = { usesPermissions = { "com.android.vending.BILLING", "android.permission.INTERNET", "com.android.vending.CHECK\_LICENSE", }, }, --Plugins plugins = { ["plugin.amazon.iap"] = { publisherId = "com.coronalabs", supportedPlatforms = { ["android-kindle"]=true }, }, ["plugin.google.iap.v3"] = { publisherId = "com.coronalabs", supportedPlatforms = { android=true } }, ["facebook"] = { publisherId = "com.coronalabs" }, }, }
Simon