解决65535

在app的build gradle里面加

defaultConfig { multiDexEnabled true//解决65535 }


dependencies {

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


然后自定义一个MyApplication extends MultiDexApplication ,

最后要在

 <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">

 

posted @ 2018-07-03 17:29  劳猿外  阅读(143)  评论(0编辑  收藏  举报