Hi,
I got an error "ITMS-90072 : The IPA is invalid. It does not included a Payload directory" during the submission process via both the XCode Archives and Application Loader attempt. I'm try to update in next version of new apple watch application. The two responses that I've read are located in the info.plist file Two keys must be added : - LSRequiresIPhoneOS: YES (Boolean) - CFBundleInfoDictionaryVersion: 6.0 (String) The project has been cleaned. This is the contents of my file info.plist:
How can I solve this problem?
<?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>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>Nation TV</string>
<key>CFBundleExecutable</key>
<string>com.company.appname</string>
<key>CFBundleGetInfoString</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>com.company.appname</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>app name</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>3.5</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>fbIDXXXXXXX</string>
</array>
</dict>
</array>
<key>CFBundleVersion</key>
<string>3.5.1</string>
<key>FacebookAppID</key>
<string>fbIDXXXXXXXXX</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
</dict>
</plist>