I get the following warning in Corona Simulator Output:
WARNING: unrecognized key: settings.iphone.plist.ITSAppUsesNonExemptEncryption (boolean)
The build.settings file looks like this:
settings = { orientation = { default = "portrait", supported = { "portrait" }, }, android = { usesPermissions = { "android.permission.INTERNET", "android.permission.VIBRATE", "android.permission.WRITE\_EXTERNAL\_STORAGE", }, usesFeatures = { { name = "android.hardware.location.network", required = false }, }, }, iphone = { plist = { ITSAppUsesNonExemptEncryption = false, NSCalendarsUsageDescription = "Testing", NSPhotoLibraryUsageDescription = "Testing", NSCameraUsageDescription = "Testing", NSAppTransportSecurity = { NSExceptionDomains = { ["allthumbsdev.com"] = { NSIncludesSubdomains = true, NSThirdPartyExceptionAllowsInsecureHTTPLoads = true, NSAllowsArbitraryLoads = false, }, }, }, CFBundleIconFiles = { "Icon-57.png", "Icon-60.png", "Icon-72.png", "Icon-76.png", "Icon-120.png", "Icon-152.png" }, } }, window = { -- Settings for the desktop window; applies to both Win32 and OS X desktop apps defaultViewWidth = 320, defaultViewHeight = 480, resizable = true, minViewWidth = 320, minViewHeight = 480, }, plugins = { ["plugin.utf8"] = { publisherId = "com.coronalabs" }, ["plugin.pasteboard"] = { publisherId = "com.coronalabs", }, ["plugin.texttospeech"] = { publisherId = "com.spiralcodestudio" }, ["plugin.vibrator"] = { publisherId = "com.spiralcodestudio" , supportedPlatforms = { iphone=false, android=true } }, }, }
I also get the some sort of warning in iTune Connect about encryption and they suggest using ITSAppUsesNonExemptEncryption = false. Doesn’t seem to register correctly.
Is it badly formatted or something?