Hi,
My app works great in the simulator and was working on my Android device until I did a new build today. Now I see the “Powered by Corona Labs” splash and then crash with an error that begins:
Runtime Error /Users/jenkins/… module " not found: resource (.lu) does not exist in archive no field package…
(I can give more of the error message if needed, but I have to transcribe it by hand, so I tried to the gist of it.)
I’ve included the console output during the build and my build.settings file. Can anyone suggest what is causing this error? What does it mean that there is no module name specified, just a double quotation mark?
Thanks.
My version of Corona SDK is up to date as is everything on my device. This is console output during the build:
Sep 23 10:28:52.005 Building android app for gregmcdo@gmail.com with 2016.2949
Sep 23 10:28:56.704 BUILD SUCCESSFUL
Total time: 1 second
Sep 23 10:29:20.340 Excluding specified files from build:
excluding: Icon.png
excluding: Icon-Small-*.png
excluding: Icon*@2x.png
BuildID: 57e53c2aca7e4
Sep 23 10:29:37.851 BUILD SUCCESSFUL
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 = { 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", }, }, }