How to enable multidexing with the new Android Multidex support library

后端 未结 14 2618
逝去的感伤
逝去的感伤 2020-11-21 12:57

I want to use the new Multidex support library to break the method limit for one of my apps.

With Android Lollipop Google introduced a multidex support library that

14条回答
  •  深忆病人
    2020-11-21 13:51

    All answers above are awesome

    Also add this otherwise your app will crash like mine without any reason

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    

提交回复
热议问题