Android Studio DexIndexOverflowException: method ID not in

前端 未结 8 1812
长情又很酷
长情又很酷 2020-12-04 13:56

I use Android Studio to develop an application and I face this error which I have no idea how to solve.

com.android.dex.DexIndexOverflowException: met

8条回答
  •  鱼传尺愫
    2020-12-04 14:41

        Error:Execution failed for task ':app:transformClassesWithDexForDebug'.
    > com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536
    
    
    solution : inside build.gradle(app)
    defaultConfig {
            applicationId "com.rentalhousereviews"
            ------------
            -----------
            multiDexEnabled true  //add this line
        }
    
    
    
    dependencies {
    compile 'com.android.support:multidex:1.0.1'
    }
    

提交回复
热议问题