Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to process application plist validation [duplicate]

Possible Duplicate:
Unable to process application info.plist validation at this time due to a general error (1095)

I am getting the error

Unable to process application Info.plist validation at this time due to a general error.

I thought originally that this was a problem with Apple's servers, but I can validate a different app I am working on just fine.

I found this question, however I am already using XCode's archive and upload utility. I really need to get this app uploaded, why would this fail validation, but run perfectly well?

EDIT:

Here is my xml for the plist

<?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>CFBundleName</key>
    <string>${PRODUCT_NAME}</string>
    <key>CFBundleIdentifier</key>
    <string>magichour.GIM-Conversion</string>
    <key>CFBundleInfoDictionaryVersion</key>
    <string>6.0</string>
    <key>CFBundleIcons</key>
    <dict>
        <key>CFBundlePrimaryIcon</key>
        <dict>
            <key>UIPrerenderedIcon</key>
            <false/>
            <key>CFBundleIconFiles</key>
            <array>
                <string>Handbook_icon_57.png</string>
                <string>Handbook_icon_114.png</string>
            </array>
        </dict>
    </dict>
    <key>CFBundleVersion</key>
    <string>1.0.1</string>
    <key>CFBundleExecutable</key>
    <string>${EXECUTABLE_NAME}</string>
    <key>LSRequiresIPhoneOS</key>
    <true/>
    <key>CFBundleIconFiles</key>
    <array>
        <string>Handbook_icon_57.png</string>
        <string>Handbook_icon_114.png</string>
    </array>
    <key>UISupportedInterfaceOrientations</key>
    <array>
        <string>UIInterfaceOrientationPortrait</string>
        <string>UIInterfaceOrientationPortraitUpsideDown</string>
    </array>
    <key>CFBundleDisplayName</key>
    <string>${PRODUCT_NAME}</string>
    <key>CFBundlePackageType</key>
    <string>APPL</string>
    <key>CFBundleIconFile</key>
    <string></string>
    <key>CFBundleSignature</key>
    <string>????</string>
    <key>NSMainNibFile</key>
    <string>MainWindow</string>
    <key>CFBundleDevelopmentRegion</key>
    <string>en</string>
    <key>CFBundleShortVersionString</key>
    <string>1.0</string>
</dict>
</plist>
like image 928
Dan F Avatar asked Dec 05 '11 19:12

Dan F


3 Answers

I just had this error. I waited an hour and tried again with the exact same build and it was all good. Vote for it being Apple's glitch.

like image 70
Chris Newman Avatar answered Oct 11 '22 05:10

Chris Newman


I tried the creating new project thing but it didn't worked.

What worked was restarting my computer.

like image 25
Everton Cunha Avatar answered Oct 11 '22 05:10

Everton Cunha


Something must have been corrupted with the plist file, I created a new project, and copied the source code over, and I was able to upload

like image 1
Dan F Avatar answered Oct 11 '22 05:10

Dan F