【個人的備忘】CocoaPodsを使用してGoogleMobileAdsをインポートする
1. CocoaPodsインストール
ターミナル起動
sudo gem update —system
※ruby gemアップデート
sudo gem install cocoapods
pod setup
2. プロジェクトにPodfile作成してGoogle-Mobile-Ads-SDKインストール
※Xcode閉じておく
cd プロジェクトのディレクトリ
※例
cd Desktop/xxx
cd Desktop→ls→cd xxx
pod init
※Podfile作成
vim Podfile
i
※編集モード(insert)
# Pods for XXの下に
pod 'Google-Mobile-Ads-SDK'
esc
※編集モード終了
:wq
もしくは(Shift+z)×2
※保存して終了
pod install
3. Info.plist更新
※Info.plistに以下追加
Key:
GADApplicationIdentifier
Type:
String
Value:
AdMobアプリID
※SKAdNetworkItems キーも追加。
cf)https://developers.google.com/admob/ios/quick-start
※
<key>GADIsAdManagerApp</key>
<true/>
上記も追加。(記載しないと"The Google Mobile Ads SDK was initialized without AppMeasurement"のエラーが出るようになりました。2021/06/14追記)
4. インポート文
import GoogleMobileAds
Author And Source
この問題について(【個人的備忘】CocoaPodsを使用してGoogleMobileAdsをインポートする), 我々は、より多くの情報をここで見つけました https://qiita.com/chukurimu1202/items/555f521bdf6faaa020f1著者帰属:元の著者の情報は、元の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 .