Android/広告組込/google/admob/準備

提供: 初心者エンジニアの簡易メモ
2020年11月18日 (水) 04:34時点におけるAdmin (トーク | 投稿記録)による版 (firebaseの場合)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
ナビゲーションに移動 検索に移動

準備

公式: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'