iTunes Connect:无效的Swift支持 - 框架没有适合此位置的文件类型

时间:2015-11-28 08:24:58

标签: ios swift cocoapods

我目前正在使用Xcode 7.1.1

在应用商店上传我的应用

但是当我上传我的应用时,我收到了Apple的电子邮件。

Dear developer,
We have discovered one or more issues with your recent delivery for "****".     
To process your delivery, the following issues must be corrected:
Invalid Swift Support - The file     
****.app/Frameworks/JSQSystemSoundPlayer.framework, 
****.app/Frameworks/JLToast.framework, 
****.app/Frameworks/SwiftyJSON.framework,         
****.app/Frameworks/JSQMessagesViewController.framework doesn’t have the
correct file type for this location. Ensure you’re using the correct
file,rebuild your app using the current public (GM) version of Xcode, and resubmit it.
Once these issues have been corrected, you can then redeliver the corrected binary.
Regards,
The App Store team

我正在使用Cocoapods。这是我的podfile

platform :ios, '8.0'
use_frameworks!
source 'https://github.com/CocoaPods/Specs.git'

target 'TwinsChauffeur' do
pod 'GoogleMaps'
use_frameworks! pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git'
use_frameworks! pod 'JLToast', '~> 1.3'
pod 'Google/CloudMessaging'
use_frameworks! pod 'JSQMessagesViewController'
pod 'IgaworksCore'
pod 'AdPopcornOfferwall'
end

我的项目是Swift

也 pods框架名称为红色 这是通常的吗?

red framework image

1 个答案:

答案 0 :(得分:2)

解决自己。 真是太愚蠢了。 更改产品名称后只有英文。 解决所有问题。 标记为红色的pod框架是正常的事情。

相关问题