App rejected - 4th time - HELP!

This is the 4th time for the same rejection. From Apple:

Guideline 2.3 - Performance - Accurate Metadata

We were still unable to install the app on iPhone and iPad. The UIRequiredDeviceCapabilities key in the Info.plist is set in such a way that the app will not install on an iPhone and iPad.

There is my build settings and the three info.plist files in the package. Is there no guru that can help???

settings = { &nbsp;&nbsp;&nbsp; splashScreen = &nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; enable = false &nbsp;&nbsp;&nbsp; }, &nbsp;&nbsp;&nbsp; orientation = { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; default = "portrait", &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; supported = { "portrait", "portraitUpsideDown" } &nbsp;&nbsp;&nbsp; }, &nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp; iphone = { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xcassets = "Images.xcassets", &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; plist = { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CFBundleIconFiles = {}, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; UILaunchStoryboardName = "LaunchScreen", &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; UIPrerenderedIcon = false, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; UIApplicationExitsOnSuspend = true,&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NSAppTransportSecurity = &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NSExceptionDomains = &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ["www.\<mysite\>.com"] = &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NSIncludesSubdomains = true, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NSThirdPartyExceptionAllowsInsecureHTTPLoads = true, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }, &nbsp;&nbsp;&nbsp; }, &nbsp;&nbsp;&nbsp; -- Android permissions &nbsp;&nbsp;&nbsp; android = &nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; versionCode = "13", &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; usesPermissions = &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "android.permission.INTERNET", &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "android.permission.WRITE\_EXTERNAL\_STORAGE", &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; usesFeatures = &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { name="android.hardware.camera", required=false }, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { name="android.hardware.location", required=false }, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { name="android.hardware.location.gps", required=false }, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } &nbsp;&nbsp;&nbsp; }, &nbsp;&nbsp;&nbsp; plugins = { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ["plugin.braintonik-dialog"] = { publisherId = "com.braintonik" }, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ['plugin.texttospeech'] = {publisherId = "com.spiralcodestudio"}, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ['plugin.progressRing'] = {publisherId = "com.schroederapps"}, &nbsp;&nbsp;&nbsp; }, }

From App main payload:

\<?xml version="1.0" encoding="UTF-8"?\> \<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"\> \<plist version="1.0"\> \<dict\> &nbsp;&nbsp; &nbsp;\<key\>BuildMachineOSBuild\</key\> &nbsp;&nbsp; &nbsp;\<string\>17E199\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleDevelopmentRegion\</key\> &nbsp;&nbsp; &nbsp;\<string\>en\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleDisplayName\</key\> &nbsp;&nbsp; &nbsp;\<string\>Simple Pick$\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleExecutable\</key\> &nbsp;&nbsp; &nbsp;\<string\>Simple Pick$\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleIconFiles\</key\> &nbsp;&nbsp; &nbsp;\<array/\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleIcons\</key\> &nbsp;&nbsp; &nbsp;\<dict\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<key\>CFBundlePrimaryIcon\</key\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<dict\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<key\>CFBundleIconFiles\</key\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<array\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>AppIcon20x20\</string\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>AppIcon29x29\</string\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>AppIcon40x40\</string\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>AppIcon60x60\</string\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\</array\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<key\>CFBundleIconName\</key\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>AppIcon\</string\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\</dict\> &nbsp;&nbsp; &nbsp;\</dict\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleIcons~ipad\</key\> &nbsp;&nbsp; &nbsp;\<dict\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<key\>CFBundlePrimaryIcon\</key\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<dict\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<key\>CFBundleIconFiles\</key\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<array\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>AppIcon20x20\</string\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>AppIcon29x29\</string\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>AppIcon40x40\</string\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>AppIcon60x60\</string\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>AppIcon76x76\</string\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>AppIcon83.5x83.5\</string\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\</array\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<key\>CFBundleIconName\</key\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>AppIcon\</string\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\</dict\> &nbsp;&nbsp; &nbsp;\</dict\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleIdentifier\</key\> &nbsp;&nbsp; &nbsp;\<string\>me.lessms.SimplePicksEdge\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleInfoDictionaryVersion\</key\> &nbsp;&nbsp; &nbsp;\<string\>6.0\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleName\</key\> &nbsp;&nbsp; &nbsp;\<string\>Simple Pick$\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFBundlePackageType\</key\> &nbsp;&nbsp; &nbsp;\<string\>APPL\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleShortVersionString\</key\> &nbsp;&nbsp; &nbsp;\<string\>1.13\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleSupportedPlatforms\</key\> &nbsp;&nbsp; &nbsp;\<array\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>iPhoneOS\</string\> &nbsp;&nbsp; &nbsp;\</array\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleVersion\</key\> &nbsp;&nbsp; &nbsp;\<string\>2018.04.231619\</string\> &nbsp;&nbsp; &nbsp;\<key\>CoronaDelegates\</key\> &nbsp;&nbsp; &nbsp;\<array/\> &nbsp;&nbsp; &nbsp;\<key\>CoronaSDKBuild\</key\> &nbsp;&nbsp; &nbsp;\<string\>2018.3274\</string\> &nbsp;&nbsp; &nbsp;\<key\>CoronaViewSupportedInterfaceOrientations\</key\> &nbsp;&nbsp; &nbsp;\<array\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>UIInterfaceOrientationPortrait\</string\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>UIInterfaceOrientationPortraitUpsideDown\</string\> &nbsp;&nbsp; &nbsp;\</array\> &nbsp;&nbsp; &nbsp;\<key\>DTCompiler\</key\> &nbsp;&nbsp; &nbsp;\<string\>com.apple.compilers.llvm.clang.1\_0\</string\> &nbsp;&nbsp; &nbsp;\<key\>DTPlatformBuild\</key\> &nbsp;&nbsp; &nbsp;\<string\>15E217\</string\> &nbsp;&nbsp; &nbsp;\<key\>DTPlatformName\</key\> &nbsp;&nbsp; &nbsp;\<string\>iphoneos\</string\> &nbsp;&nbsp; &nbsp;\<key\>DTPlatformVersion\</key\> &nbsp;&nbsp; &nbsp;\<string\>11.3\</string\> &nbsp;&nbsp; &nbsp;\<key\>DTSDKBuild\</key\> &nbsp;&nbsp; &nbsp;\<string\>15E217\</string\> &nbsp;&nbsp; &nbsp;\<key\>DTSDKName\</key\> &nbsp;&nbsp; &nbsp;\<string\>iphoneos11.3\</string\> &nbsp;&nbsp; &nbsp;\<key\>DTXcode\</key\> &nbsp;&nbsp; &nbsp;\<string\>0930\</string\> &nbsp;&nbsp; &nbsp;\<key\>DTXcodeBuild\</key\> &nbsp;&nbsp; &nbsp;\<string\>9E145\</string\> &nbsp;&nbsp; &nbsp;\<key\>LSRequiresIPhoneOS\</key\> &nbsp;&nbsp; &nbsp;\<true/\> &nbsp;&nbsp; &nbsp;\<key\>MinimumOSVersion\</key\> &nbsp;&nbsp; &nbsp;\<string\>8.0\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSAppTransportSecurity\</key\> &nbsp;&nbsp; &nbsp;\<dict\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<key\>NSExceptionDomains\</key\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<dict\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<key\>www.viewdecide.com\</key\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<dict\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<key\>NSIncludesSubdomains\</key\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<true/\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<key\>NSThirdPartyExceptionAllowsInsecureHTTPLoads\</key\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<true/\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\</dict\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\</dict\> &nbsp;&nbsp; &nbsp;\</dict\> &nbsp;&nbsp; &nbsp;\<key\>NSAppleMusicUsageDescription\</key\> &nbsp;&nbsp; &nbsp;\<string\>NSAppleMusicUsageDescription should be set to a valid usage description\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSBluetoothPeripheralUsageDescription\</key\> &nbsp;&nbsp; &nbsp;\<string\>NSBluetoothPeripheralUsageDescription should be set to a valid usage description\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSCalendarsUsageDescription\</key\> &nbsp;&nbsp; &nbsp;\<string\>NSCalendarsUsageDescription should be set to a valid usage description\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSCameraUsageDescription\</key\> &nbsp;&nbsp; &nbsp;\<string\>NSCameraUsageDescription should be set to a valid usage description\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSContactsUsageDescription\</key\> &nbsp;&nbsp; &nbsp;\<string\>NSContactsUsageDescription should be set to a valid usage description\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSHealthShareUsageDescription\</key\> &nbsp;&nbsp; &nbsp;\<string\>NSHealthShareUsageDescription should be set to a valid usage description\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSHealthUpdateUsageDescription\</key\> &nbsp;&nbsp; &nbsp;\<string\>NSHealthUpdateUsageDescription should be set to a valid usage description\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSHomeKitUsageDescription\</key\> &nbsp;&nbsp; &nbsp;\<string\>NSHomeKitUsageDescription should be set to a valid usage description\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSLocationAlwaysUsageDescription\</key\> &nbsp;&nbsp; &nbsp;\<string\>NSLocationAlwaysUsageDescription should be set to a valid usage description\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSLocationUsageDescription\</key\> &nbsp;&nbsp; &nbsp;\<string\>NSLocationUsageDescription should be set to a valid usage description\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSLocationWhenInUseUsageDescription\</key\> &nbsp;&nbsp; &nbsp;\<string\>NSLocationWhenInUseUsageDescription should be set to a valid usage description\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSMainNibFile\</key\> &nbsp;&nbsp; &nbsp;\<string\>MainWindow\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSMainNibFile~ipad\</key\> &nbsp;&nbsp; &nbsp;\<string\>MainWindow-iPad\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSMicrophoneUsageDescription\</key\> &nbsp;&nbsp; &nbsp;\<string\>NSMicrophoneUsageDescription should be set to a valid usage description\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSMotionUsageDescription\</key\> &nbsp;&nbsp; &nbsp;\<string\>NSMotionUsageDescription should be set to a valid usage description\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSPhotoLibraryAddUsageDescription\</key\> &nbsp;&nbsp; &nbsp;\<string\>NSPhotoLibraryAddUsageDescription should be set to a valid usage descripiton\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSPhotoLibraryUsageDescription\</key\> &nbsp;&nbsp; &nbsp;\<string\>NSPhotoLibraryUsageDescription should be set to a valid usage description\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSRemindersUsageDescription\</key\> &nbsp;&nbsp; &nbsp;\<string\>NSRemindersUsageDescription should be set to a valid usage description\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSSiriUsageDescription\</key\> &nbsp;&nbsp; &nbsp;\<string\>NSSiriUsageDescription should be set to a valid usage description\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSSpeechRecognitionUsageDescription\</key\> &nbsp;&nbsp; &nbsp;\<string\>NSSpeechRecognitionUsageDescription should be set to a valid usage description\</string\> &nbsp;&nbsp; &nbsp;\<key\>UIAppFonts\</key\> &nbsp;&nbsp; &nbsp;\<array\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>budmo\_jiggler.ttf\</string\> &nbsp;&nbsp; &nbsp;\</array\> &nbsp;&nbsp; &nbsp;\<key\>UIApplicationExitsOnSuspend\</key\> &nbsp;&nbsp; &nbsp;\<true/\> &nbsp;&nbsp; &nbsp;\<key\>UIDeviceFamily\</key\> &nbsp;&nbsp; &nbsp;\<array\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<integer\>1\</integer\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<integer\>2\</integer\> &nbsp;&nbsp; &nbsp;\</array\> &nbsp;&nbsp; &nbsp;\<key\>UIInterfaceOrientation\</key\> &nbsp;&nbsp; &nbsp;\<string\>UIInterfaceOrientationPortrait\</string\> &nbsp;&nbsp; &nbsp;\<key\>UILaunchStoryboardName\</key\> &nbsp;&nbsp; &nbsp;\<string\>LaunchScreen\</string\> &nbsp;&nbsp; &nbsp;\<key\>UIPrerenderedIcon\</key\> &nbsp;&nbsp; &nbsp;\<false/\> &nbsp;&nbsp; &nbsp;\<key\>UIRequiresFullScreen\</key\> &nbsp;&nbsp; &nbsp;\<true/\> &nbsp;&nbsp; &nbsp;\<key\>UIStatusBarHidden\</key\> &nbsp;&nbsp; &nbsp;\<true/\> &nbsp;&nbsp; &nbsp;\<key\>UIStatusBarStyle\</key\> &nbsp;&nbsp; &nbsp;\<string\>UIStatusBarStyleBlackTranslucent\</string\> &nbsp;&nbsp; &nbsp;\<key\>UISupportedInterfaceOrientations\</key\> &nbsp;&nbsp; &nbsp;\<array\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>UIInterfaceOrientationPortrait\</string\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>UIInterfaceOrientationPortraitUpsideDown\</string\> &nbsp;&nbsp; &nbsp;\</array\> \</dict\> \</plist\>

From CoronaResources.bundle:

\<?xml version="1.0" encoding="UTF-8"?\> \<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"\> \<plist version="1.0"\> \<dict\> &nbsp;&nbsp; &nbsp;\<key\>BuildMachineOSBuild\</key\> &nbsp;&nbsp; &nbsp;\<string\>17E199\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleDevelopmentRegion\</key\> &nbsp;&nbsp; &nbsp;\<string\>English\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleIdentifier\</key\> &nbsp;&nbsp; &nbsp;\<string\>com.coronalabs.CoronaResources\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleInfoDictionaryVersion\</key\> &nbsp;&nbsp; &nbsp;\<string\>6.0\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleName\</key\> &nbsp;&nbsp; &nbsp;\<string\>CoronaResources\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFBundlePackageType\</key\> &nbsp;&nbsp; &nbsp;\<string\>BNDL\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleShortVersionString\</key\> &nbsp;&nbsp; &nbsp;\<string\>1.0\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleSignature\</key\> &nbsp;&nbsp; &nbsp;\<string\>????\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleSupportedPlatforms\</key\> &nbsp;&nbsp; &nbsp;\<array\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>iPhoneOS\</string\> &nbsp;&nbsp; &nbsp;\</array\> &nbsp;&nbsp; &nbsp;\<key\>CFBundleVersion\</key\> &nbsp;&nbsp; &nbsp;\<string\>1\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFPlugInDynamicRegisterFunction\</key\> &nbsp;&nbsp; &nbsp;\<string\>\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFPlugInDynamicRegistration\</key\> &nbsp;&nbsp; &nbsp;\<string\>NO\</string\> &nbsp;&nbsp; &nbsp;\<key\>CFPlugInFactories\</key\> &nbsp;&nbsp; &nbsp;\<dict\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<key\>00000000-0000-0000-0000-000000000000\</key\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>MyFactoryFunction\</string\> &nbsp;&nbsp; &nbsp;\</dict\> &nbsp;&nbsp; &nbsp;\<key\>CFPlugInTypes\</key\> &nbsp;&nbsp; &nbsp;\<dict\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<key\>00000000-0000-0000-0000-000000000000\</key\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<array\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>00000000-0000-0000-0000-000000000000\</string\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\</array\> &nbsp;&nbsp; &nbsp;\</dict\> &nbsp;&nbsp; &nbsp;\<key\>CFPlugInUnloadFunction\</key\> &nbsp;&nbsp; &nbsp;\<string\>\</string\> &nbsp;&nbsp; &nbsp;\<key\>DTCompiler\</key\> &nbsp;&nbsp; &nbsp;\<string\>com.apple.compilers.llvm.clang.1\_0\</string\> &nbsp;&nbsp; &nbsp;\<key\>DTPlatformBuild\</key\> &nbsp;&nbsp; &nbsp;\<string\>15E217\</string\> &nbsp;&nbsp; &nbsp;\<key\>DTPlatformName\</key\> &nbsp;&nbsp; &nbsp;\<string\>iphoneos\</string\> &nbsp;&nbsp; &nbsp;\<key\>DTPlatformVersion\</key\> &nbsp;&nbsp; &nbsp;\<string\>11.3\</string\> &nbsp;&nbsp; &nbsp;\<key\>DTSDKBuild\</key\> &nbsp;&nbsp; &nbsp;\<string\>15E217\</string\> &nbsp;&nbsp; &nbsp;\<key\>DTSDKName\</key\> &nbsp;&nbsp; &nbsp;\<string\>iphoneos11.3\</string\> &nbsp;&nbsp; &nbsp;\<key\>DTXcode\</key\> &nbsp;&nbsp; &nbsp;\<string\>0930\</string\> &nbsp;&nbsp; &nbsp;\<key\>DTXcodeBuild\</key\> &nbsp;&nbsp; &nbsp;\<string\>9E145\</string\> &nbsp;&nbsp; &nbsp;\<key\>MinimumOSVersion\</key\> &nbsp;&nbsp; &nbsp;\<string\>8.0\</string\> &nbsp;&nbsp; &nbsp;\<key\>NSHumanReadableCopyright\</key\> &nbsp;&nbsp; &nbsp;\<string\>Copyright © 2014 Corona Labs Inc. All rights reserved.\</string\> &nbsp;&nbsp; &nbsp;\<key\>UIDeviceFamily\</key\> &nbsp;&nbsp; &nbsp;\<array\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<integer\>1\</integer\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<integer\>2\</integer\> &nbsp;&nbsp; &nbsp;\</array\> \</dict\> \</plist\>

From LaunchScreen.storyboardc:

\<?xml version="1.0" encoding="UTF-8"?\> \<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"\> \<plist version="1.0"\> \<dict\> &nbsp;&nbsp; &nbsp;\<key\>UIStoryboardDesignatedEntryPointIdentifier\</key\> &nbsp;&nbsp; &nbsp;\<string\>UIViewController-01J-lp-oVM\</string\> &nbsp;&nbsp; &nbsp;\<key\>UIStoryboardVersion\</key\> &nbsp;&nbsp; &nbsp;\<integer\>1\</integer\> &nbsp;&nbsp; &nbsp;\<key\>UIViewControllerIdentifiersToNibNames\</key\> &nbsp;&nbsp; &nbsp;\<dict\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<key\>UIViewController-01J-lp-oVM\</key\> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;\<string\>UIViewController-01J-lp-oVM\</string\> &nbsp;&nbsp; &nbsp;\</dict\> \</dict\> \</plist\>

Hi.  I never saw an answer to my question in your other thread: https://forums.coronalabs.com/topic/72429-missing-infoplist-value

Did you take my advice and start using a recent daily build?

Also, I noticed you posted (in another thread) that you’re using xCode 9.3. 

If moving forward to the latest Daily Build doesn’t work, I think you might need to roll back to xCode 9.2.

Maybe someone else can confirm, but I think 9.2 is the current version we’re expected to use.  

For each submission a new build was used. The last submission used 3274. This is almost identical to a free version I previously submitted and everything passed (it didn’t use the “plugin.braintonik-dialog” plugin). All of the info.plist files (except the storybook one) are generated by Corona.

I never had an app rejected before. The only thing different with this app is I’m using a purchased dialog plugin - “plugin.braintonik-dialog”. I used a sliding side menu and my next step will be to remove that plugin and make the same effect myself.

I’m not rolling back anything. xCode is not the problem - building this app is - specifically in the info.plist file(s).

And you’re sure that xCode isn’t contributing this weird plist issue?

OK.  That’s about all I had.

By the way, I put out feelers on 9.2 versus 9.3 so if I get more data on that I’ll post back.

Oooooooo K - will try it with Xcode 9.2 - I’m desperate!

Try removing this entry from your plist   CFBundleIconFiles = {} as this might be causing a mismatch with  Images.xcassets.

Also, this is not recommended  UIApplicationExitsOnSuspend = true ,

Finally - this has been resolved. It has nothing to do with builds or info.plist files or build settings. The problem was all due to a “$” symbol at the end of my app name. Removed the “$” (actually renamed it totally) and now it’s up for sale.

Thanks anyway for the feedbacks.

Well that sucks.  I’m glad you figured it out.

:slight_smile:

How did you end up figuring this out?

It was a guess. Last night I was running through all things I’d changed and tried and wondered if the “$” was the problem. This morning I changed the graphics (thought of better one) and the name, rebuilt, submitted. Think the iTunes Connect people were feeling sympathetic and almost immediately put it into review, then a few hours after that - put it on the app store.

Also - I had contacted Apple Tech Support and the guy took on the challenge. He couldn’t figure out what the problem was either but after I posted the change he sent me another email with the error he was getting and his suggestion:
 

default    10:33:06.207870 -0700    installd    0x16fc73000 +[MICodeSigningVerifier _validateSignatureAndCopyInfoForURL:withOptions:error:]: 147: Failed to verify code signature of /private/var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.J0sE2h/extracted/Payload/Simple Pick$.app : 0xe8008017 (A signed resource has been added, modified, or deleted.)

 

“One idea which we wondered about - the use of the “$” in the name of the app.”

Hi.  I never saw an answer to my question in your other thread: https://forums.coronalabs.com/topic/72429-missing-infoplist-value

Did you take my advice and start using a recent daily build?

Also, I noticed you posted (in another thread) that you’re using xCode 9.3. 

If moving forward to the latest Daily Build doesn’t work, I think you might need to roll back to xCode 9.2.

Maybe someone else can confirm, but I think 9.2 is the current version we’re expected to use.  

For each submission a new build was used. The last submission used 3274. This is almost identical to a free version I previously submitted and everything passed (it didn’t use the “plugin.braintonik-dialog” plugin). All of the info.plist files (except the storybook one) are generated by Corona.

I never had an app rejected before. The only thing different with this app is I’m using a purchased dialog plugin - “plugin.braintonik-dialog”. I used a sliding side menu and my next step will be to remove that plugin and make the same effect myself.

I’m not rolling back anything. xCode is not the problem - building this app is - specifically in the info.plist file(s).

And you’re sure that xCode isn’t contributing this weird plist issue?

OK.  That’s about all I had.

By the way, I put out feelers on 9.2 versus 9.3 so if I get more data on that I’ll post back.

Oooooooo K - will try it with Xcode 9.2 - I’m desperate!

Try removing this entry from your plist   CFBundleIconFiles = {} as this might be causing a mismatch with  Images.xcassets.

Also, this is not recommended  UIApplicationExitsOnSuspend = true ,

Finally - this has been resolved. It has nothing to do with builds or info.plist files or build settings. The problem was all due to a “$” symbol at the end of my app name. Removed the “$” (actually renamed it totally) and now it’s up for sale.

Thanks anyway for the feedbacks.

Well that sucks.  I’m glad you figured it out.

:slight_smile:

How did you end up figuring this out?

It was a guess. Last night I was running through all things I’d changed and tried and wondered if the “$” was the problem. This morning I changed the graphics (thought of better one) and the name, rebuilt, submitted. Think the iTunes Connect people were feeling sympathetic and almost immediately put it into review, then a few hours after that - put it on the app store.

Also - I had contacted Apple Tech Support and the guy took on the challenge. He couldn’t figure out what the problem was either but after I posted the change he sent me another email with the error he was getting and his suggestion:
 

default    10:33:06.207870 -0700    installd    0x16fc73000 +[MICodeSigningVerifier _validateSignatureAndCopyInfoForURL:withOptions:error:]: 147: Failed to verify code signature of /private/var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.J0sE2h/extracted/Payload/Simple Pick$.app : 0xe8008017 (A signed resource has been added, modified, or deleted.)

 

“One idea which we wondered about - the use of the “$” in the name of the app.”