解决65535
Posted laoyimou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决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">
以上是关于解决65535的主要内容,如果未能解决你的问题,请参考以下文章