I suggest that Apple’s system intermittently worked when Max uploaded the modified version, and that the above changes to the build.settings file are not related to the problem.
If my build.settings file is free of errors, it would be an argument in favor of this suggestion.
settings =
{
plugins =
{
[“CoronaProvider.native.popup.social”] =
{
publisherId = “com.coronalabs”
},
},
orientation =
{
default = “portrait”,
supported =
{
“portrait”
},
},
iphone = {
plist = {
CFBundleIdentifier = “se.avia.shoppingtranas”,
UIStatusBarHidden = true,
UIPrerenderedIcon = true, – set to false for “shine” overlay
UIApplicationExitsOnSuspend = false, – uncomment to quit app on suspend
NSLocationWhenInUseUsageDescription = “Appen behöver veta din position för att visa kartor och vägbeskrivningar.”,
NSAppTransportSecurity = { NSAllowsArbitraryLoads = true }, --allow app to access Internet…
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-40.png”,
“Icon-40@2x.png”,
“Icon-40@3x.png”,
“Icon-Small-50.png”,
“Icon-Small-50@2x.png”,
“Icon-Small.png”,
“Icon-Small@2x.png”,
“Icon-Small@3x.png”
},
–[[
– iOS app URL schemes:
CFBundleURLTypes =
{
{
CFBundleURLSchemes =
{
“fbXXXXXXXXXXXXXX”, – example scheme for facebook
“coronasdkapp”, – example second scheme
}
}
}
–]]
}
},
android =
{
–largeHeap = true, --for image manipulation, enable if camera!
permissions =
{
{ name = “.permission.C2D_MESSAGE”, protectionLevel = “signature” },
},
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 = true },
{ name = “android.hardware.location.gps”, required = true },
{ name = “android.hardware.location.network”, required = true },
},
usesPermissions =
{
“android.permission.INTERNET”,
--“android.permission.CAMERA”,
“android.permission.WRITE_EXTERNAL_STORAGE”,
“android.permission.GET_ACCOUNTS”,
“android.permission.RECEIVE_BOOT_COMPLETED”,
“com.google.android.c2dm.permission.RECEIVE”,
“.permission.C2D_MESSAGE”,
– Optional permission used to display current location via the GPS.
“android.permission.ACCESS_FINE_LOCATION”,
– Optional permission used to display current location via WiFi or cellular service.
“android.permission.ACCESS_COARSE_LOCATION”,
“android.permission.CALL_PHONE”,
},
}
}