processDebugResources&#39 ;. >错误:多个包含包名称的库' com.google.android.gms'

时间:2016-10-06 13:41:37

标签: android firebase firebase-cloud-messaging

我将Firebase Cloud Messaging添加到我的Android应用程序中,并且我将旧的应用程序从GCM升级到FCM。我按照Firebase Console中的步骤尝试了示例应用,效果很好。

将相同的代码嵌入到我的应用中的现有代码后,即使构建成功,尝试在Android Studio中的设备上运行应用时,我也会收到此错误:

getting the error: more than one library with package name 'com.google.android.gms'.

查看从终端获取的依赖项截图。我使用

检查了依赖项
command >gradlew -q dependencies project name:dependencies --configuratio
n compile

结果如下:

任何建议都表示赞赏。

1 个答案:

答案 0 :(得分:0)

Previously some modules in my app was using old jar files of googleplayservices.

After using google play services with same version like below

dependencies {
    compile 'com.google.android.gms:play-services:9.6.1'
}

I hope it will help some one needed.