解决Android 65535问题

下载依赖

// 解决65535问题
compile 'com.android.support:multidex:1.0.3'

编辑application

方法一: 继承MultiDexApplication

class App : MultiDexApplication() {
}

方法二: 覆写attachBaseContext()

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

猜你喜欢

转载自blog.csdn.net/APTX8899/article/details/88648759
今日推荐