Hi, i am having the exact same problem as basiliogerman. I am using corona verision 2017.3121. This is my build.settings. Hope you can help me, it has never happend to me before.
settings = { build = { neverStripDebugInfo = true }, splashScreen = { enable = false, }, orientation = { default = "landscapeRight", content = "landscapeRight", supported = {"landscapeRight", "landscapeLeft"}, }, window = { defaultMode = "normal", resizable = false, minViewWidth = 1024, minViewHeight = 768, titleText = { default = "My App", }, }, plugins = true and { ["plugin.kochava"] = { publisherId = "com.coronalabs", supportedPlatforms = { ["iphone"] = true, ["iphone-sim"] = true, ["appletvos"] = false, ["android"] = true, }, }, ["plugin.qrscanner"] = { publisherId = "com.spiralcodestudio", supportedPlatforms = { ["iphone"] = true, ["iphone-sim"] = true, ["appletvos"] = false, ["android"] = true, }, }, ["plugin.zip"] = { publisherId = "com.coronalabs", supportedPlatforms = { ["iphone"] = true, ["iphone-sim"] = true, ["appletvos"] = true, ["android"] = true, }, }, ["plugin.utf8"] = { publisherId = "com.coronalabs", supportedPlatforms = { ["iphone"] = true, ["iphone-sim"] = true, ["android"] = true, ["appletvos"] = true, }, }, ["plugin.notifications"] = { publisherId = "com.coronalabs", supportedPlatforms = { ["iphone"] = true, ["iphone-sim"] = true, ["android"] = true, }, }, ["CoronaProvider.gameNetwork.apple"] = { publisherId = "com.coronalabs", supportedPlatforms = { ["iphone"] = true, ["iphone-sim"] = true, }, }, ["CoronaProvider.gameNetwork.google"] = { publisherId = "com.coronalabs", supportedPlatforms = { ["android"] = true, }, }, ["plugin.advertisingId"] = { publisherId = "com.coronalabs", supportedPlatforms = { ["iphone"] = true, ["iphone-sim"] = true, ["android"] = true, }, }, ["facebook"] = { publisherId = "com.coronalabs", supportedPlatforms = { ["iphone"] = true, ["iphone-sim"] = true, ["android"] = true, }, }, ["plugin.google.iap.v3"] = { publisherId = "com.coronalabs", supportedPlatforms = { ["android"] = true, }, }, ["plugin.openssl"] = { publisherId = "com.coronalabs", }, ["plugin.tenjin"] = { publisherId = "com.coronalabs", supportedPlatforms = { ["iphone"] = true, ["android"] = true, ["iphone-sim"] = true , } }, ["plugin.google.play.services"] = { publisherId = "com.coronalabs", supportedPlatforms = { android = true, } }, }, iphone = { plist = { NSAppTransportSecurity = { NSAllowsArbitraryLoads = true }, CFBundleShortVersionString = "1.0.0", UIStatusBarHidden = true, UIPrerenderedIcon = true, NSPhotoLibraryUsageDescription = "To select user profile picture", NSCameraUsageDescription = "Used to scan QR codes", CFBundleDisplayName = "AppName", CFBundleIconFiles = { "Icon.png", "Icon@2x.png", "Icon-60.png", "Icon-60@2x.png", "Icon-72.png", "Icon-72@2x.png", "Icon-76.png", "Icon-76@2x.png", }, UIApplicationExitsOnSuspend = false, FacebookAppID = "1111111111", LSApplicationQueriesSchemes = { "fb", "fbapi", "fbauth2", "fb-messenger-api", "fbshareextension" }, CFBundleURLTypes = { { CFBundleURLSchemes = { "fb11111111111", "appName" }, }, }, CFBundleIdentifier = "com.my.App" } }, android = { minSdkVersion = "16", facebookAppId = "11111111111", googlePlayGamesAppId = "11111111", largeHeap = true, versionCode = "1", usesExpansionFile = true, permissions = { { name = ".permission.C2D\_MESSAGE", protectionLevel = "signature" }, }, usesPermissions = { "com.android.vending.BILLING", "android.permission.INTERNET", "android.permission.ACCESS\_WIFI\_STATE", "android.permission.ACCESS\_NETWORK\_STATE", "com.android.vending.CHECK\_LICENSE", "android.permission.WRITE\_EXTERNAL\_STORAGE", "android.permission.GET\_ACCOUNTS", "android.permission.RECEIVE\_BOOT\_COMPLETED", "com.google.android.c2dm.permission.RECEIVE", ".permission.C2D\_MESSAGE", }, intentFilters = { { label = "AppName", actions = { "android.intent.action.VIEW" }, categories = { "android.intent.category.DEFAULT", "android.intent.category.BROWSABLE", }, data = { scheme = "AppName", }, }, }, }, tvos = { icon = { small = { "Icon-tvOS-Small-4.png", "Icon-tvOS-Small-3.png", "Icon-tvOS-Small-2.png", "Icon-tvOS-Small-1.png", }, large = { "Icon-tvOS-Large-4.png", "Icon-tvOS-Large-3.png", "Icon-tvOS-Large-2.png", "Icon-tvOS-Large-1.png", } }, topShelfImage = "Icon-tvOS-TopShelf.png", launchImage = "Icon-tvOS-Launch.png", plist = { NSAppTransportSecurity = { NSAllowsArbitraryLoads = true }, }, }, }
Thanks in advance.