Is proguard.cfg needed for library projects?

Library projects by themselves don’t run ProGuard, so they don’t use any configuration.

Application projects obfuscate the entire code base, including any referenced libraries, so they need proper configuration for the application code and for the library code.

Leave a Comment