在android開發的過程中,隨著app的功能和程式碼的增加,總會在一次編譯後遇到這個錯誤:
Conversion to Dalvik format failed:
Unable to execute dex: method ID not in [0, 0xffff]: 65536
複製程式碼
這就是android中方法數超過64k,即64 * 1024位數的限制。在android官方api中給出了這個問題的解決方案《配置方法數超過 64K 的應用》,讓你完美的規避64k的限制。
1.如果你的minSdkVersion的設定>=21,只需要在build.gradle中設定multiDexEnabled為true
android {
defaultConfig {
...
minSdkVersion 21
targetSdkVersion 26
multiDexEnabled true
}
...
}
複製程式碼
2.如果你的minSdkVersion的設定<21,就需要如下操作了
1.在AndroidMainfest.xml中新增application。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myapp">
<application
android:name="MyApplication" >
...
</application>
</manifest>
複製程式碼
2.呼叫attachBaseContent()方法呼叫Multidex.install(this)。
public class MyApplication extends SomeOtherApplication {
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(context);
Multidex.install(this);
}
}
複製程式碼
3.build.gradle中新增
android {
defaultConfig {
...
minSdkVersion 15
targetSdkVersion 26
multiDexEnabled true
}
dexOptions {
incremental true
javaMaxHeapSize "4g"
}
...
}
dependencies {
compile 'com.android.support:multidex:1.0.1'
}
複製程式碼
就搞定了!