Android Studio DexIndexOverflowException: method ID not in

前端 未结 8 1814
长情又很酷
长情又很酷 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:36

    set multiDex in your gradle

    defaultConfig {
        // ...
        multiDexEnabled true
    }
    

    it's work for me.

提交回复
热议问题