1.
app.build.gradle里添加
android { defaultConfig { // Enabling multidex support. multiDexEnabled true } } dependencies {
'com.android.support:multidex:1.0.1'
}
2.
如果你的工程中已经含有Application类,那么让它继承android.support.multidex.MultiDexApplication类,
如果你的Application已经继承了其他类并且不想做改动,那么还有另外一种使用方式,覆写attachBaseContext()方法:
public class MyApplication extends Application { @Override protected void attachBaseContext(Context base) { super.attachBaseContext(base); MultiDex.install(this); } }