CocoaPods 1.2.0 で、arm64 以外への端末の Build や、archive が失敗するのでなんとかした
pod install すると、なぜかライブラリのターゲット(ActionoSheetPicker-3.0)
の BuildSettings>Archtecture>archtectures が arm64 に設定されます。
このままだと、iphone5 や ipadMini など arm64 でないCPUでの実行や、armv7 なども含む Build の Archive で失敗します。Project レベルだと、ふつうに Standard Architectures になっているので、下記のようなコードを Pod ファイルの末尾に書いて、target レベルの Architectures の設定を削除することで乗り切ることにしました。
Webで理由とか漁ったけどでてこんかった。なんでや!
post_install do |installer|
installer.pods_project.targets.each do |target|
next if target.name.start_with?("Pods")
target.build_configurations.each do |config|
config.build_settings.delete("ARCHS")
end
end
end
Author And Source
この問題について(CocoaPods 1.2.0 で、arm64 以外への端末の Build や、archive が失敗するのでなんとかした), 我々は、より多くの情報をここで見つけました https://qiita.com/lazyppp/items/ca4bec41aae0fb170e50著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .