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
行,内置了确定...
答案 0 :(得分:2)
不,它不需要AppCompat库。与您在问题中提供的文档(this)完全相同的链接表明只需要compile 'com.google.android.gms:play-services-ads:8.3.0'
。其余包括appcompat库在该文档页面上显示为灰色。它只是为了让我们了解build.gradle
文件的外观。