Android/広告組込/google/admob/準備
提供: 初心者エンジニアの簡易メモ
準備
公式:https://developers.google.com/admob/android/quick-start?hl=ja
プロジェクト直下のbuild.gradle
allprojects { repositories { google() jcenter() } } dependencies { implementation 'com.google.android.gms:play-services-ads:18.3.0' }
AndroidManifest.xml
<manifest> <application> <meta-data android:name="com.google.android.gms.ads.APPLICATION_ID" android:value="ca-app-pub-xxxxxxxxxxxxxxxx~yyyyyyyyyy"/> </application> </manifest>
firebaseの場合はこちら
implementation 'com.google.firebase:firebase-ads:19.5.0' implementation 'com.google.firebase:firebase-core:17.5.1'