I created the application in Xcode 6.1. It does not load in ios 8 showing an error LoadExternalDownloadManifestOperation: Ignore manifest download, already have bundleID: com....... I have tried many solutions:
When I implement these solutions, at first I load 2-3 times, but after that it does not work. I think this may be a problem plist.
I would like to know how to create plistfrom Xcode 6.1? Got plistfrom .xarchive in Xcode 6.1(shown below) but not working.
<?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>ApplicationProperties</key>enter code here
<dict>
<key>ApplicationPath</key>
<string>https://....../App.ipa</string>
<key>CFBundleIdentifier</key>
<string>com.abc.xyz.efg</string>
<key>CFBundleShortVersionString</key>
<string>1.0.40</string>
<key>CFBundleVersion</key>
<string>1.0.40</string>
<key>IconPaths</key>
<array>
<string>https://....../icon-76.png</string>
<string>https://....../icon-60.png</string>
</array>
<key>SigningIdentity</key>
<string>Company Limited</string>
</dict>
<key>ArchiveVersion</key>
<integer>2</integer>
<key>CreationDate</key>
<date>2014-12-11T06:46:25Z</date>
<key>Name</key>
<string>App</string>
<key>SchemeName</key>
<string>App</string>
</dict>
</plist>
source
share