Android當方法總數超過64K時(Android Studio)
阿新 • • 發佈:2019-01-06
1. 問題描述
Error:The number of method references in a .dex file cannot exceed 64K.
Error:Execution failed for task ':app:transformClassesWithDexForRelease'.
> com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: com.android.ide.common.process.ProcessException:
org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.8.0_77\bin\java.exe'' finished with non-zero exit value 2‘’?
2. 解決方案
方案2:分割Dex
3.分割Dex的實現方法
/**
* 分割 Dex 支援
* @param base
*/
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
MultiDex.install(this);
}
1、相關連結
2、在app的 build.gradle 中
(1)在dependencies 中新增
compile 'com.android.support:multidex:1.0.0'
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs') compile 'com.android.support:multidex:1.0.0'
}
(2)在 defaultConfig 中新增
multiDexEnabled true
defaultConfig {
applicationId "com.vieboo.test"
minSdkVersion 14
targetSdkVersion 21
versionCode 1
versionName "1.0"
// Enabling multidex support.
multiDexEnabled true}
(3)在 AndroidManifest.xml 中的 application 標籤中新增
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.vieboo.test"> <application ... android:name="android.support.multidex.MultiDexApplication"> ... </application> </manifest>
提示:如果你的應用程式繼承 Application , 那麼你需要重寫並繼承MultiDexApplication
/**
* 分割 Dex 支援
* @param base
*/
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
MultiDex.install(this);
}