It seems some old Android OSs (and maybe even the newest ones) have a limitation on the amount of code each app can hold.
As I\'ve found, the li
The limit is the total number of method references:
A middle ground between doing nothing and the multi-dex approach described in the FB/Google articles is to use a tool like ProGuard to remove references to unused code at the Java level. See:
There is a new solution, made by Google:
It seems all you have to do is any of the next things: - extend from "MultiDexApplication" instead of from "Application" - call MultiDex.install(context) in your application's attachBaseContext
But now I wonder: