解决65535

在app的build gradle里面加

defaultConfig { multiDexEnabled true//解决65535 }


dependencies {

compile 'com.android.support:multidex:1.0.1'
}


而后自定义一个MyApplication extends MultiDexApplication ,android

最后要在app

 <application
        android:name=".MyApplication"//这里记得加
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
相关文章
相关标签/搜索