64k限制-dex分包

打包时报64k方法限制解决

1.build.gradle:

defaultConfig {
        multiDexEnabled true  //打包支持
    }
2.Application中:

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

猜你喜欢

转载自h496950806.iteye.com/blog/2315233