AdMob依赖项

时间:2016-01-04 22:46:04

标签: android admob android-appcompat

Android AdMob库是否需要 AppCompat库?

Quoth Google

dependencies {
        compile fileTree(dir: 'libs', include: ['*.jar'])
        compile 'com.android.support:appcompat-v7:22.2.0'
        compile 'com.google.android.gms:play-services-ads:8.3.0'
    }

我注释了appcompat行,内置了确定...

1 个答案:

答案 0 :(得分:2)

不,它不需要AppCompat库。与您在问题中提供的文档(this)完全相同的链接表明只需要compile 'com.google.android.gms:play-services-ads:8.3.0'。其余包括appcompat库在该文档页面上显示为灰色。它只是为了让我们了解build.gradle文件的外观。

enter image description here