您的位置:首页 > 运维架构

cocopods【 审核报错】提交构建版本出错:ERROR ITMS-90635

2016-06-21 09:35 393 查看
昨天提交审核时出现了这样的错误



晚上有些不负责任的博主没有验证就将答案贴上,



结果就是报出语法错误



正确的方法是

platform:ios, ‘7.0’
use_frameworks!
target "your app name" do
pod 'Reachability', '3.1.0'
pod 'AFNetworking', '~> 3.0.4s’
pod 'SDWebImage', '~> 3.7.5'

end
post_install do |installer|

installer.pods_project.targets.each do |target|

target.build_configurations.each do |config|

config.build_settings['ENABLE_BITCODE'] = 'NO'

end

end
end


然后
pod install -- verbose -- no-repo-update


注意是有两个 -

如果 pod install 报错,报错如下:

[!] Invalid
Podfile
file: syntax error, unexpected tCONSTANT,

expecting end-of-input …ig.build_settings[‘OTHER_CFLAGS’] ||

[‘$(inherited)’] … ^. Updating

CocoaPods might fix the issue.

那就需要先删除之前Podfile里面加的post_install do |installer|…… ,然后pod update, 在update之前记得给第三方框架指定一个版本(某些框架最新的可能在你项目无法使用,出现bug),升级后再次执行上面的步骤
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  ios 提交版本 cooped