XCode12
iOS Deplayment Target 14.5
を利用しています。
以下URLを参考に設定とコードを記入しました。
https://reasonable-code.com/swiftui-admob/
実行すると、以下のエラーが発生し原因がわかりません。
発生している問題・エラーメッセージ
Thread 9: "The Google Mobile Ads SDK was initialized without AppMeasurement. Google AdMob publishers, follow instructions here: https://googlemobileadssdk.page.link/admob-ios-update-plist to include the AppMeasurement framework and set the -ObjC linker flag. Google Ad Manager publishers, follow instructions here: https://googlemobileadssdk.page.link/ad-manager-ios-update-plist"
コードでは、以下AdViewを参照したさいに発生しています。
struct AdView: UIViewRepresentable {
func makeUIView(context: Context) -> GADBannerView {
let banner = GADBannerView(adSize: kGADAdSizeBanner)
banner.adUnitID = "ca-app-pub-3940256099942544/2934735716" banner.rootViewController = UIApplication.shared.windows.first?.rootViewController banner.load(GADRequest()) return banner } func updateUIView(_ uiView: GADBannerView, context: Context) { }
}
試したこと
エラーメッセージにあるURLを参照し、Info.plinkファイルを見直しましたがエラーが変わる事はありませんでした。
補足情報(FW/ツールのバージョンなど)
XCode12
あなたの回答
tips
プレビュー