Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

multiDexKeepFile not working

We are having problems in building our multidex App. We keep receiving different java.lang.NoClassDefFoundError erros during the application boot.

We noticed that they are very likely related to the multidex issues. As the required classes for booting the App must be present in the primary DEX file and they are not being included in the classes.dex. We performed the steps described in https://developer.android.com/studio/build/multidex.html#keep but the classes we specify in the multidex-config.txt, or even in the multidex-config.pro are not being placed in the primary dex file (classes.dex).

Do you guys have experience using the multiDexKeepFile or the multiDexKeepProguard? Does it really work? Is there any trick to make it work and place the files in the classes.dex?

like image 957
Nadilson Ferreira Avatar asked May 11 '17 01:05

Nadilson Ferreira


2 Answers

Try updating your gradle plugin. I've seen that in 2.2.0 the configuration is ignored entirely. When I updated to 2.3.3 it started respecting the rules I set.

Example:

classpath com.android.tools.build:gradle:2.3.3

And in my default config I have this set:

    multiDexEnabled true
    multiDexKeepProguard file('proguard.multidex.config')

Also you may have to do a clean build before the changes are reflected.

like image 165
Travis Castillo Avatar answered Nov 16 '22 22:11

Travis Castillo


I have the same problem.And i still don't know why. But i found another solution,and it works. In your app module's build.gradle add dexOptions:

android {
    dexOptions {
        additionalParameters = ['--multi-dex',
                                '--set-max-idx-number=60000',
                                '--main-dex-list='+projectDir+'/your_multidexconfig.txt',
                                '--minimal-main-dex'
        ]
    }
}
like image 41
you Avatar answered Nov 16 '22 21:11

you