如果你想第一時間收到類似的文章 點擊上面藍色字體「愛開發(fā)」關(guān)注即可 前天,,更新源碼后,,出現(xiàn)了
這個bug,處理了,,分享給大家,,希望對你學(xué)習(xí)有幫助! 確保Android SDK Build Tools tools已經(jīng)更新至21.1以上,,然后再來配置應(yīng)用的multidex部分,。 如何處理 android 方法總數(shù)超過 65536 . the number of method references in a .dex file exceed 64k 分割 Dex 文件實現(xiàn)方法 1 在app的 build.gradle 中 01. 在dependencies 中添加 compile 'com.android.support:multidex:1.0.1' 02.在defaultConfig 中添加 multiDexEnabled true 例如 defaultConfig { applicationId "com.aikaifa.demo" minSdkVersion 15 targetSdkVersion 23 versionCode 1 versionName "1.0" signingConfig signingConfigs.config multiDexEnabled true } 03.在 AndroidManifest.xml 中的 application 標簽中添加 <application ... android:name="android.support.multidex.MultiDexApplication"> ... </application> 提示:如果你的應(yīng)用程序繼承 Application , 那么你需要重寫 @Override protected void attachBaseContext(Context base) { super.attachBaseContext(base); MultiDex.install(this) ; } |
|