Android- Error:Execution failed for task ':app:transformClassesWithDexForRelease'
i fixed it just this code.
local.properties
org.gradle.jvmargs=-XX\:MaxHeapSize\=512m -Xmx512m
and you should do this changing on gradle
defaultConfig {
applicationId "yourProjectPackage"
minSdkVersion 15
versionCode 1
versionName "1.0"
targetSdkVersion 23
multiDexEnabled true //important
}
If you make multiDexEnabled = true
in defaultConfig of the app, you will get the desired result.
defaultConfig {
minSdkVersion 14
targetSdkVersion 22
multiDexEnabled = true
}
For me, the problem was solved after I removed jar
file from my project. it seems that one of the jar
files inside my project was using an older version of google play services
.