1
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 3 years have passed since last update.

【CocoaPods】ライブラリのインストール時に警告が出る

Last updated at Posted at 2022-06-16

警告文

[!] Your project does not explicitly specify the CocoaPods master specs repo. Since CDN is now used as the default, you may safely remove it from your repos directory via `pod repo remove master`. To suppress this warning please add `warn_for_unused_master_specs_repo => false` to your Podfile.

スクリーンショット 2022-06-14 15.15.51.png

解決方法

install! 'cocoapods', :warn_for_unused_master_specs_repo => falseを最初の行に追加します。

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

+ install! 'cocoapods', :warn_for_unused_master_specs_repo => false

  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
1
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
1
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?