如何解决:gradle中包含com.google.android.gms包名的多个库

时间:2015-10-29 18:29:52

标签: android android-gradle build.gradle

如何在编译Google Play服务gcm和admob时解决此错误。

错误:任务执行失败':processDebugResources'。

  

错误:多个包含包名称的库' com.google.android.gms'   您可以使用android.enforceUniquePackageName = false暂时禁用此错误   但是,这是暂时的,将在1.0 [在此处输入图像说明] [1]

中强制执行
dependencies {
    compile 'com.android.support:support-v4:22.2.1'
    compile 'com.google.code.gson:gson:2.3'
    compile "com.android.support:appcompat-v7:22.2.1"
    compile 'com.android.support:design:22.2.1'
    compile 'com.android.support:cardview-v7:22.2.1'
    compile 'com.google.android.gms:play-services-gcm:7.8.0'
    compile 'com.google.android.gms:play-services:6.5.87'
    compile 'com.facebook.android:facebook-android-sdk:4.1.0'
}

1 个答案:

答案 0 :(得分:0)

如果你在(7.8.0)

上使用相同的版本,这可能会消失
compile 'com.google.android.gms:play-services-gcm:7.8.0' // <- remove this line
compile 'com.google.android.gms:play-services:6.5.87'

虽然已经有8.1+了。

此外: Gcm已经在播放服务中,你可以删除整行。