Error:Error converting bytecode to dex:
Cause: com.android.dex.DexException: Multiple dex files define Lcom/androidquery/util/Constants;
我已经跟踪了每个stackoverflow
问题,但没有一个问题解决了我的问题。我仍然收到错误。
Unable to execute dex: Multiple dex files define
Android Studio Gradle Error: Multiple dex files define
Unable to execute dex: Multiple dex files define Lcom/myapp/R$array;
//apply plugin: 'com.android.library'
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion '25.0.0'
defaultConfig {
applicationId "com.andromeda.kunalbhatia.demo.hungamaplayer"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.google.android.exoplayer:exoplayer:r1.5.8'
compile 'com.android.support:mediarouter-v7:25.3.1'
compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.googlecode.android-query:android-query:0.25.9'
}
答案 0 :(得分:1)
您可能使用两个内部使用相同传递依赖项的库。
检查build.gradle上的依赖项,并使用exclude
标记表示不重复依赖项。 (您应该更新添加依赖项的帖子)
答案 1 :(得分:0)
尝试添加
multiDexEnabled true
defautconfig中的{} 在gradle中
答案 2 :(得分:0)
尝试在项目根目录中运行此命令> ./ gradlew androiddependencies
如果你找到了库' android-query'使用不同版本发生两次,您可以修复项目的依赖性以避免此问题。