It was suggested on the slack channel that it might be down to one of the plugins I use.
I use three that are not standard Corona ones and I’ve emailed a couple of the authors to ask them if they’ve been updated (the two in question are ScottH’s Volume Control and IAP Badger - I haven’t contacted OneSignal).
I’m assuming all the Corona ones are all updated?
Here’s my build.settings file in case anyone can see anything.
-- --------------------------------------------------- -- 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: -- PHONE : portrait, portraitUpsideDown -- TABLET : landscapeLeft, landscapeRight -- default = "landscapeRight", supported = { "landscapeRight","landscapeLeft" } -- default = "portrait", supported = { "portrait","portraitUpsideDown" } default = "portrait", supported = { "portrait","portraitUpsideDown" } }, excludeFiles = { -- Include only the necessary icon files on each platform iphone = { "Icon-\*dpi.png", "\_build.settings.\*", "assets/api\_key.txt", "readme.md", ".gitignore", ".git" }, android = { "Icon.png", "Icon-Small-\*.png", "Icon\*@2x.png", "\_build.settings.\*", "assets/api\_key.txt", "readme.md", ".gitignore", ".git" }, }, -- --------------------------------------------------- -- iOS Section -- --------------------------------------------------- iphone = { xcassets = "Images.xcassets", plist = { UILaunchStoryboardName = "LaunchScreen", UIBackgroundModes = {"remote-notification"}, NSLocationAlwaysUsageDescription = { "" }, NSLocationWhenInUseUsageDescription = { "" }, NSCalendarsUsageDescription = "Testing", NSPhotoLibraryUsageDescription = "Testing", NSCameraUsageDescription = "Testing", MinimumOSVersion = "6.1.6", UIStatusBarHidden = true, UIPrerenderedIcon = true, UIApplicationExitsOnSuspend = false, NSAppTransportSecurity = { NSAllowsArbitraryLoads=true, NSExceptionDomains = { ["coronalabs.com"] = { NSIncludesSubdomains = true, NSThirdPartyExceptionAllowsInsecureHTTPLoads = true }, ["youtube.com"] = { NSIncludesSubdomains = true, NSThirdPartyExceptionAllowsInsecureHTTPLoads = true }, ["google.com"] = { NSIncludesSubdomains = true, NSThirdPartyExceptionAllowsInsecureHTTPLoads = true }, ["theukuleleapp.com"] = { NSIncludesSubdomains = true, NSThirdPartyExceptionAllowsInsecureHTTPLoads = true }, ["www.theukuleleapp.com"] = { NSIncludesSubdomains = true, NSThirdPartyExceptionAllowsInsecureHTTPLoads = true }, }, }, } }, -- --------------------------------------------------- -- Android Section -- --------------------------------------------------- android = { usesPermissions = { "android.permission.INTERNET", "android.permission.ACCESS\_NETWORK\_STATE", "com.android.vending.CHECK\_LICENSE", "com.android.vending.BILLING", "android.permission.ACCESS\_FINE\_LOCATION", }, usesFeatures = { -- If you set permissions "ACCESS\_FINE\_LOCATION" and "ACCESS\_COARSE\_LOCATION" above, -- then you may want to set up your app to not require location services as follows. -- Otherwise, devices that do not have location sevices (such as a GPS) will be unable -- to purchase this app in the app store. { name = "android.hardware.location", required = false }, { name = "android.hardware.location.gps", required = false }, { name = "android.hardware.location.network", required = false }, }, }, -- --------------------------------------------------- -- Plugins -- --------------------------------------------------- plugins = { ["plugin.volumeControl"] = { publisherId = "tech.scotth", supportedPlatforms = { iphone=true, android=true } }, ["plugin.OneSignal"] = { publisherId = "com.onesignal" }, ["plugin.iap\_badger"] = { publisherId = "uk.co.happymongoose" }, ["plugin.google.iap.v3"] = { publisherId = "com.coronalabs", supportedPlatforms = { android = true }, }, ["plugin.googleAnalytics"] = { publisherId = "com.coronalabs", }, ["plugin.admob"] = { publisherId = "com.coronalabs", }, ["shared.android.support.v4"] = { publisherId = "com.coronalabs", supportedPlatforms = { android=true } }, } }