不幸升级了xcode,现在陷入了地狱。
Invalid Swift Support - The SwiftSupport folder is missing. Rebuild your app using the current public (GM) version of Xcode and resubmit it.
我猜测cocoapods是罪魁祸首,因为我已成功将另一个应用程序上传到不使用cocoapods的testflight。
这是如何解决的?
不起作用
我的Podfile内容:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
pod 'Alamofire', '~> 2.0'
pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git'
答案 0 :(得分:0)
好的,在Apple开发者论坛上,我发现了this帖子。基本上,有些人发现将这些东西添加到他们的.plist文件中可以解决问题:
<key>ApplicationProperties</key>
<dict>
<key>ApplicationPath</key>
<string>Applications/<<APP_NAME>>.app</string>
<key>CFBundleIdentifier</key>
<string><<BUNDLE_IDENTIFIER>></string>
<key>CFBundleShortVersionString</key>
<string><<YOUR_MARKETING_NUMBER>></string>
<key>CFBundleVersion</key>
<string><<YOUR_BUILD_NUMBER>></string>
<key>SigningIdentity</key>
<string>iPhone Distribution: <<CERTIFICATE_NAME>> (<<CERTIFICATE_ID>>)</string>
</dict>
如果您有一个旧的,有效的存档,您可以从那里复制值,只需更改营销版本和内部版本号。
然后,重新启动Xcode。
如果这没有帮助,有关this开发者表格帖子的更多信息。