From adt-21-preview DOC
Building
There's a new flag to force "jumbo mode" for dex which allows a larger number of strings in the dex files; set dex.force.jumbo=true in project.properties
I red this what-are-the-dex-method-and-string-limits-in-an-android-app
too, where @SamWise
answers:
With jumbo dex on, the string reference limit is somewhere between 110K and 120K.
Question:
What is String or String reference in Dex? Do they mean variable length? For example if I'll write:
private String foo = "fessy";
Doe it mean string is 3 or value length, in my case 5?
Sub-question:
I used following script dex-method-counts to calculate method Count but I didn't find any reference to calculate String count.
Please help,