all I did is add: ``` for (MethodRef methodRef : m...
# android
v
all I did is add:
Copy code
for (MethodRef methodRef : methodRefs) {
    System.out.println(methodRef.getDeclClassName() + " - " + methodRef.getName() + " - " + methodRef.getDescriptor());
}
before this line https://github.com/mihaip/dex-method-counts/blob/master/src/info/persistent/dex/DexMethodCounts.java#L34
K 1