我有一个pod文件
target 'MainApp' do # the host app target
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for xxxxxx
....
pod 'FMDB', '2.6.2'
......
end
target 'CallExtension3' do # the Extension target whose host app is MainApp
platform :ios, '10.0'
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for CallExtension3
pod 'FMDB', '2.6.2''
end构建和归档是可以的。但是,当我提交应用程序到应用商店时,出现错误。
ERROR ITMS-90685: "CFBundleIdentifier Collision. There is more than one bundle with the CFBundleIdentifier value 'org.cocoapods.FMDB' under the iOS application 'xxxxxx.app'."如何解决?谢谢
发布于 2017-07-03 09:53:44
https://github.com/CocoaPods/CocoaPods/issues/4203也许能帮到你
或者单击目标部分中的extension -> Build phases -> remove the embed pods
https://stackoverflow.com/questions/43536888
复制相似问题