IT/안드로이드

안드로이드 스튜디오 Error:Execution failed for task ':app:transformClassesWithDexForRelease'. > com.android.build.api.transform.TransformException: java.lang.RuntimeException: java.lang.RuntimeException: com.android.ide.common.process.ProcessEx..

조원태 2016. 12. 20. 19:13
반응형

안드로이드 스튜디오 

Error:Execution failed for task ':app:transformClassesWithDexForRelease'. > com.android.build.api.transform.TransformException: java.lang.RuntimeException: java.lang.RuntimeException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: java.lang.UnsupportedOperationException


디버깅 모드로 할 경우는 발생하지 않았던 오류가 릴리즈 모드로 하니 나오네요


엄청 많이 나오네요

위 에러는 


defaultConfig {
applicationId "com.."
minSdkVersion 9
targetSdkVersion 22
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
    multiDexEnabled true

이것을 추가 함으로 해결 할 수 있습니다.


반응형