当我尝试构建我的android工作室项目时:给我以下错误

时间:2017-02-27 16:58:41

标签: android android-studio gradle android-gradle build.gradle

Here I have attached the screenshot 请注意,我将firebase添加到我的应用程序后会出现此错误。

错误:将字节码转换为dex时出错:原因:com.android.dex.DexException:多个dex文件定义了Landroid / support / v4 / accessibilityservice / AccessibilityServiceInfoCompatIcs;

1 个答案:

答案 0 :(得分:1)

我在使用Google Play服务时遇到了同样的问题,请按照以下方法进行修复。

只需解析以下代码:

compile 'com.google.android.gms:play-services:9.4.0'

要:

compile ('com.google.android.gms:play-services:9.4.0') {
    exclude module: 'support-v4'
}
相关问题