본문 바로가기
프레임워크/Flutter

[flutter] Google AdMob 설치하기-2 (flutter플러그인 설치~ admobid등록 )

by 연어바케트 2025. 1. 13.
반응형

1. 우선 플러그인을 설치 한다 

 

google_mobile_ads | Flutter package

Flutter plugin for Google Mobile Ads, supporting banner, interstitial (full-screen), rewarded and native ads

pub.dev

 

참고

webview_flutter :^4.10.0을 사용할 경우, google_mobile_ads: ^5.2.0와 의존성 충돌성이 난다. google_mobile_ads:^5.2.0은 webview_flutter_android를 3.15.0를 주입받고 있고, webview_flutter:4.10.0은 4.0.0을 주입바도 있어서다.
webview_flutter :^4.10.0를 4.9.0로 낮추면 해결. 

이 이슈는 현재 열심히 해결중에 보인다. 

 

Updated google_mobile_ads direct dependencies by LTPhantom · Pull Request #1207 · googleads/googleads-mobile-flutter

Description Update webview plugin android dependency Related Issues google_mobile_ads 5.2.0 not compatible with webview_flutter >=4.10.0 #1200 Checklist Before you create this PR confirm tha...

github.com

 

 

2. 안드로이드 

- AndroidMainfest.xml에 meta-data선언

<meta-data
    android:name="com.google.android.gms.ads.APPLICATION_ID"
    android:value="ca-app-pub-3940256099942544~2247696110"/>



3. IOS
ios/Runner/Info.plist 파일에 admob ID를 등록한다.

<key>GADApplicationIdentifier</key>
<string>ca-app-pub-3940256099942544~1458002511</string>





반응형

댓글