I'm receiving this error in my android project:
Unable to execute dex: method ID not in [0, 0xffff]: 65536
Conversion to Dalvik format failed: Unable to execute dex: method ID not in [0, 0xffff]: 65536
From all my research it's due to having too many methods in my android project - limit is 64k. However I have run scripts to count how many is currently in the project and it is coming up with 56k methods. Here is the script I am running.
The only addition to my project is that I have updated Parse from 1.4 to 1.7.
The project built and compiled after updating parse, but when I try to add any new code this error appears.
I was using Android Studio 0.8.9 when I first encountered this error. I have reverted back to Android Studio 0.8.6 and it is still occurring.