0
0

PODの作り方(iPhoneアプリ制作)

Last updated at Posted at 2024-08-07

ディレクトリ移動しプロジェクトの直下に移動してください

cd Documents/XXX

下記を実行するとpodファイルがプロジェクト配下にできる

pod init

Podfileをエディターで修正
下記のようにPodfileを修正
 ※今回はAdmobを入れたい

platform :ios, '15.0'
target 'XXX' do
  use_frameworks!
  pod 'Google-Mobile-Ads-SDK'
end

修正後下記実行

pod update

完了

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