记一次解决 Android 编译报错:Error:Execution failed for task ':app:transformClassesWithDexForDebug' 的过程

现在我正在解决 还没解决 那我解决使用的方案记录一下


,1clean  project  发现真的不行 


2, build  project  也不行


3,我解决了它!它的配置和更新的集合。添加这些变量,他们适应build.gradleandroid {

packagingOptions {

exclude 'META-INF/ASL2.0'

exclude 'META-INF/LICENSE'

exclude 'META-INF/NOTICE'

}

dexOptions {

javaMaxHeapSize "4g"

}

defaultConfig {

multiDexEnabled true

}

compileOptions {

sourceCompatibility JavaVersion.VERSION_1_7

targetCompatibility JavaVersion.VERSION_1_7

}

}


这个方法解决了

你可能感兴趣的:(记一次解决 Android 编译报错:Error:Execution failed for task ':app:transformClassesWithDexForDebug' 的过程)