方法数超过64K异常

Cannot merge new index 66221 into a non-jumbo instruction!

解决办法:添加支持库

compile 'com.android.support:multidex:1.0.3'

然后自定义的Application添加

    @Override
    protected void attachBaseContext(Context base) {
        super.attachBaseContext(base);
        MultiDex.install(this);
    }

在Android的模块gradle文件的defaultConfig默认配置里面增加:

multiDexEnabled true

你可能感兴趣的:(方法数超过64K异常)