如何在编译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'
}
答案 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已经在播放服务中,你可以删除整行。