0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【CocoaPods】ライブラリのインストール時にバージョンに関して警告が出る

Posted at

警告文

[!] Automatically assigning platform `iOS` with version `15.4` on target `LicensePlist-Demo` because no platform was specified. Please specify a platform for this target in your Podfile. See `https://guides.cocoapods.org/syntax/podfile.html#platform`.

解決方法

警告文で表示されているバージョンをPodfileファイルに記載する
スクリーンショット 2022-06-14 15.12.01.png

  # Uncomment the next line to define a global 
  platform for your project
+ platform :ios, '14.0'

  target 'LicensePlist-Demo' do
    # Comment the next line if you don't want to use 
  dynamic frameworks
    use_frameworks!

    # Pods for LicensePlist-Demo
    pod 'LicensePlist'

  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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?