Unable to build project with photon cloud for target app store Amazon.

  1. Builds fine for Target App Store Google.

  2. Throws the following error when trying to build for Amazon:

ERROR: An error occurred during build. The server returned the following message:


A device build error occurred on the server. 

BuildID: 5558df68d57b7 

Error: Get plugin failed. 

Publisher: com.exitgames 

Plugin: plugin.photon


  1. If I build with target store google and deploy to my kindle devices it works great.

Not a big deal since I can just manually change over the ads and flurry ids for the amazon version of the app.

Corona SDK version that I tried it on:

2511 (release version)

2545

2600 (somebody in this forum said that it might build on this version)

2638

Can you post your build.settings?

Sorry I just realized that you replied. This is what I did just tonight:

  1. I created a new project.
  2. Only added the photon plugin.
  3. Build for Android works.
  4. Build for Amazon I get this error:

May 24 02:13:58.133: ERROR: An error occurred during build. The server returned the following message:


A device build error occurred on the server. 

 

BuildID: 55616c250364e 

Error: Get plugin failed. 

Publisher: com.exitgames 

Plugin: plugin.photon


 

Here is my build.settings file:

-- -- For more information on build.settings see the Corona SDK Build Guide at: -- http://docs.coronalabs.com/guide/distribution/buildSettings/index.html -- settings = { plugins = { ["plugin.photon"] = { publisherId = "com.exitgames", }, }, orientation = { -- Supported values for orientation: -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight default = "portrait", supported = { "portrait", } }, excludeFiles = { -- Include only the necessary icon files on each platform iphone = { "Icon-\*dpi.png", }, android = { "Icon.png", "Icon-Small-\*.png", "Icon\*@2x.png", }, }, -- -- iOS Section -- iphone = { plist = { UIStatusBarHidden = false, UIPrerenderedIcon = true, -- set to false for "shine" overlay --UIApplicationExitsOnSuspend = true, -- uncomment to quit app on suspend 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.png", "Icon-Small@2x.png", "Icon-Small@3x.png", "Icon-Small-40.png", "Icon-Small-40@2x.png", "Icon-Small-50.png", "Icon-Small-50@2x.png", }, --[[-- iOS app URL schemes: CFBundleURLTypes = { { CFBundleURLSchemes = { "fbXXXXXXXXX", -- replace XXXXXXXXX with your Facebook appId } } } --]] } }, -- -- Android Section -- android = { usesPermissions = { "android.permission.INTERNET", }, }, }

Can you post your build.settings?

Sorry I just realized that you replied. This is what I did just tonight:

  1. I created a new project.
  2. Only added the photon plugin.
  3. Build for Android works.
  4. Build for Amazon I get this error:

May 24 02:13:58.133: ERROR: An error occurred during build. The server returned the following message:


A device build error occurred on the server. 

 

BuildID: 55616c250364e 

Error: Get plugin failed. 

Publisher: com.exitgames 

Plugin: plugin.photon


 

Here is my build.settings file:

-- -- For more information on build.settings see the Corona SDK Build Guide at: -- http://docs.coronalabs.com/guide/distribution/buildSettings/index.html -- settings = { plugins = { ["plugin.photon"] = { publisherId = "com.exitgames", }, }, orientation = { -- Supported values for orientation: -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight default = "portrait", supported = { "portrait", } }, excludeFiles = { -- Include only the necessary icon files on each platform iphone = { "Icon-\*dpi.png", }, android = { "Icon.png", "Icon-Small-\*.png", "Icon\*@2x.png", }, }, -- -- iOS Section -- iphone = { plist = { UIStatusBarHidden = false, UIPrerenderedIcon = true, -- set to false for "shine" overlay --UIApplicationExitsOnSuspend = true, -- uncomment to quit app on suspend 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.png", "Icon-Small@2x.png", "Icon-Small@3x.png", "Icon-Small-40.png", "Icon-Small-40@2x.png", "Icon-Small-50.png", "Icon-Small-50@2x.png", }, --[[-- iOS app URL schemes: CFBundleURLTypes = { { CFBundleURLSchemes = { "fbXXXXXXXXX", -- replace XXXXXXXXX with your Facebook appId } } } --]] } }, -- -- Android Section -- android = { usesPermissions = { "android.permission.INTERNET", }, }, }