Add support for MultiDexApplication
See original GitHub issuePlease add support for MultiDexApplication in DaggerApplication
. This would only require extending from MultiDexApplication
instead of Application
. Or is there a good way to use this that I’m not aware of?
Issue Analytics
- State:
- Created 6 years ago
- Comments:7
Top Results From Across the Web
Enable multidex for apps with over 64K methods
Learn how to enable an app configuration known as multidex, which allows your app to build and read multiple DEX files.
Read more >gradle - How to enable multidexing with the new Android ...
Add android-support-multidex.jar to your project. The jar can be found in your Android SDK folder /sdk/extras/android/support/multidex/library/libs.
Read more >Understanding and Solving the Multidex Problem in Android
This article will help readers understand the multidex problem in ... Therefore, you do not need to add the Multidex support library.
Read more >Understanding Multidex in Android - MindOrks
In this blog, we will learn how to use Multidex in Android. Basically, Multidex is used when we want to add more than...
Read more >Multidex in Android - GeeksforGeeks
... Android API version below 21 add the following dependency to your build.gradle file. implementation 'com.android.support:multidex:1.0.3'.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@JakeWharton is right, but what is likely to be even smaller (and even less likely to change) is to keep the
DaggerApplication
base class and copy the contents of theMultidexApplication
implementation. This is a documented approach by theMultidexApplication
docs@Ezike from docs if you don’t have the option to extend MultidexApplication you can do this
Docs