Issue
I want to check which classes and methods were removed. Any way to achieve this?
I know mapping.txt shows which symbols is obfuscated to what. But what is removed is not listed there as I know. Proguard web site does not describe about this.
Solution
The option -printusage
writes out the unused classes, fields, and methods.
Android Gradle builds by default write it to build/outputs/mapping/release/usage.txt
.
Answered By - Eric Lafortune
Answer Checked By - Senaida (JavaFixing Volunteer)