Android gives error “Cannot fit requested classes in a single dex file”

前端 未结 5 1183
忘掉有多难
忘掉有多难 2020-11-28 08:23

I don\'t know why but it\'s impossible to launch my app on my mobile this morning. I get this error message:

Cannot fit requested classes in a single dex

5条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-28 09:14

    multidex is not always the solution to the problem, is true that it will generate more dex files to fit your method count, but be sure to not import more methods that you need because this in long term will make your builds slower than before.

    For example, if you just need to use the location library from play services, you have two options

    First one is implementing the whole play-services libraries that will come with location

    implementation 'com.google.android.gms:play-services:11.8.0'
    

    These whole libraries could have more than 40.000+ methods (is only an estimative, I don't really know the total count), being close to reaching the 65536 limit methods.

    Instead you should be targeting only the libraries you will use instead of the whole bundle of libraries

    in this case

    implementation 'com.google.android.gms:play-services-location:11.8.0'
    

    could have just 50 - 100 methods to work with, which will be better at build time than loading a whole bunch of methods from the whole library package that you won't ever use.

    this is just a tip to avoid getting

    Cannot fit requested classes in a single dex file.

    For minSdkVersion above android 5.0 API 20 +

    Android 5.0 and higher uses a runtime called ART which natively supports loading multiple dex files from application APK files. ART performs pre-compilation at application install time which scans for classes(..N).dex files and compiles them into a single .oat file for execution by the Android device. For more information on the Android 5.0 runtime, see Introducing ART.

    If you are targeting lower devices (Android 4.1 API 16) or before Android 5 (API 20)

    Versions of the platform prior to Android 5.0 use the Dalvik runtime for executing app code. By default, Dalvik limits apps to a single classes.dex bytecode file per APK. In order to get around this limitation, you can use the multidex support library, which becomes part of the primary DEX file of your app and then manages access to the additional DEX files and the code they contain.

    You will need to use multidex in this last case

提交回复
热议问题