记录一个app打包报错:
报错内容:
> Task :app:mergeExtDexDebug FAILED
java.lang.ArrayIndexOutOfBoundsException
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:mergeExtDexDebug'.
> A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade
> java.lang.ArrayIndexOutOfBoundsException
解决方法:
在build.gradle文件里面加入:
android {
......
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
结果:
打包成功!