It seems that Proguard doesn\'t make any attempt to avoid naming collisions with classes in library JARs when it renames/repackages classes. Is this correct, or have I just
In closed libraries to prevent conflict between multiple obfuscated modules/libraries you should use
-keeppackagenames
proguard rule to prevent complete classes repackaging, otherwise you can find errors like:
Duplicate class a.a.a.a in [jetified-lib1] and a.a.a.a in [jetified-lib2]