I\'m attempting to add a 3rd party library (JmDNS) to my Android project.
I created a folder \'libs\' under the base project directory, and dropped the jar file in
Fixed this by moving the 3rd party libraries to another directory, in my case 'lib'. Then added
-injars lib/jmdns.jar
to the proguard.cfg file.
If the 3rd party lbs are included in the 'libs' folder, then they are processed twice.