Can i have the count of all methods used in a jar file . My APK uses certain external JARS and there are a number of classes around hundred to be precise.
I have use
Use the jar program with the -x parameter to extract the files from your jar file.
Apply a decompiler to each .class file to get the number of methods in each file.
Add up the method counts.