Cannot fit requested classes in a single dex file # methods: 66370 > 65536

问题

Cannot fit requested classes in a single dex file (# methods: 66370 > 65536)

原因分析

主要原因是你的项目貌似有点大,已经超过65k个方法。一个dex已经装不下了,需要个多个dex,也就是multidex ,因为Android系统定义总方法数是一个short int,short int 最大值为65536。

解决方案

  1. 在app module中的build.gradle中添加依赖
implementation 'com.android.support:multidex:1.0.3'
dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    //添加到此处
    implementation 'com.android.support:multidex:1.0.3'
}
  1. 在app module中的build.gradle中的defaultConfig中添加以下代码
multiDexEnabled true
apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.why.project.poidemo"
        minSdkVersion 16
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

        //添加到此处
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    //poi
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}
  1. 如果你自定义了Application需要在类中重写一个方法
 MultiDex.install(this)
@Override
public void onCreate() {
    super.onCreate();
    // 主要是添加下面这句代码
    MultiDex.install(this);
}

你可能感兴趣的:(Android)