在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'
}
就搞定了!
网友评论