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: