Xcode 6.4 The Application You Have Selected Does Not Exist

前端 未结 12 1819
既然无缘
既然无缘 2020-12-23 13:12

I am trying to submit to iTunes Connect with Xcode 6.4. I am getting this error

Unable to Validate Your Application
The applica

相关标签:
12条回答
  • 2020-12-23 13:28

    I fixed this issue. I had to update my OSX to 10.10.5 and XCode to 7.0.1. In XCode you need to set few keys. NSAppTransportSecurity Key is required if your app or game needs internet access. After this setup it works perfectly from xcode it self. And no issue on live itunes connect.

    <key>UIRequiresFullScreen</key>
        <true/>
    
    <key>NSAppTransportSecurity</key>
        <dict>
            <key>NSAllowsArbitraryLoads</key>
            <false/>
            <key>NSExceptionDomains</key>
            <dict>
                <key>domain.com</key>
                <dict>
                    <key>NSExceptionAllowsInsecureHTTPLoads</key>
                    <true/>
                    <key>NSExceptionMinimumTLSVersion</key>
                    <string>TLSv1.1</string>
                    <key>NSExceptionRequiresForwardSecrecy</key>
                    <false/>
                    <key>NSIncludesSubdomains</key>
                    <false/>
                    <key>NSThirdPartyExceptionAllowsInsecureHTTPLoads</key>
                    <false/>
                    <key>NSThirdPartyExceptionMinimumTLSVersion</key>
                    <string>TLSv1.1</string>
                    <key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
                    <false/>
                </dict>
            </dict>
        </dict> 
    
    0 讨论(0)
  • 2020-12-23 13:29

    Failed to upload archive using Xcode 6.4 and 7.1, but successfully uploaded with Xcode 7.0.1. http://adcdownload.apple.com/Developer_Tools/Xcode_7.0.1/Xcode_7.0.1.dmg

    0 讨论(0)
  • 2020-12-23 13:33

    While other are having success with Application Loader, I did not and received a different error « You are not authorized to use this service » Great!

    Since iOS 9.1 was just released yesterday perhaps Xcode 6.x is being phased out, but we're not ready to migrate to Xcode 7.x for this particular project.

    I was successful by archiving in Xcode 6.x and using the Organizer in Xcode 7.1 to submit to the App Store. The procedure is as follows:

    1. Rename Xcode 6.x (In my case Xcode632.app).
    2. Download and install Xcode 7.1 from .dmg file, not as an upgrade.
    3. Build and archive your app in Xcode 6.x
    4. Close Xcode 6.x
    5. Launch Xcode 7.1 but do not open your project.
    6. In Xcode 7 Select Window->Organizer.
    7. Submit to App Store.

    Hopefully this helps you if both the Xcode and Application Loader uploads fail.

    0 讨论(0)
  • 2020-12-23 13:35

    My solution for similar problems is use of Fastlane Tools https://fastlane.tools
    First You can use GYM tool for build/archive your project, and then Pilot for send it to iTunesConnect Testflight. This tool fixes all of my problems with Code signing, submitting, etc. so I can recommend it.

    0 讨论(0)
  • 2020-12-23 13:39

    I was having the same issue. I tried to upload with Application loader then got descriptive errors about the bundle version. After removing all third party info.plist from pods and static libs, will work to upload my build.

    0 讨论(0)
  • 2020-12-23 13:40

    I tried Application Loader and it worked. It did not work 2 hours earlier. What is weird is that I tried to download an app from the App Store and they could not find my account. Some new terms of service popped up and I agreed. After that I was then able to download with the previous "non-existent" account. That's when I tried App Loader and it worked. Must be something on Apple's side that will be fixed shortly.

    0 讨论(0)
提交回复
热议问题