Why proguard processes AndroidManifest.xml

The build process runs the tool aapt to automatically create the configuration file bin/proguard.txt, based on AndroidManifest.xml and other xml files. The build process then passes the configuration file to ProGuard. So ProGuard itself indeed doesn’t consider AndroidManifest.xml, but aapt+ProGuard do.

Leave a Comment