Xcode 6.4 The Application You Have Selected Does Not Exist

前端 未结 12 1869
既然无缘
既然无缘 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.

    UIRequiresFullScreen
        
    
    NSAppTransportSecurity
        
            NSAllowsArbitraryLoads
            
            NSExceptionDomains
            
                domain.com
                
                    NSExceptionAllowsInsecureHTTPLoads
                    
                    NSExceptionMinimumTLSVersion
                    TLSv1.1
                    NSExceptionRequiresForwardSecrecy
                    
                    NSIncludesSubdomains
                    
                    NSThirdPartyExceptionAllowsInsecureHTTPLoads
                    
                    NSThirdPartyExceptionMinimumTLSVersion
                    TLSv1.1
                    NSThirdPartyExceptionRequiresForwardSecrecy
                    
                
            
         
    

提交回复
热议问题