LoginSignup
0
0

More than 1 year has passed since last update.

podの ""is only available in ios xx.x or newer"" エラー解決

Posted at

iOSのバージョンを上げてもエラーが出てくるので困っていた

スクリーンショット 2023-01-08 23.49.04.png

解決方法

podfileに書かれている値を
15.0に修正

  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
    end
  end  
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0