I ran into the 65000 method limit on my android project and I'm trying to use this script to count my methods, which uses some extra jars. I keep getting errors when i run the script, so my guess is the jars are not included properly or I'm missing some extra step. Anybody dealt with this before?
EDIT:
cat build/dex/debug/classes.dex | head -c 92 | tail -c 4 | hexdump -e '1/4 "%d\n"'
you can use this code to count.