facebook twitter hatena line email

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

提供: 初心者エンジニアの簡易メモ
2020年1月24日 (金) 14:51時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==準備== 公式:https://developers.google.com/admob/android/quick-start?hl=ja プロジェクト直下のbuild.gradle <pre> allprojects { repositories {...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

準備

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