I have a library project that processes very well through Proguard when exported in Eclipse as part of the ADT tool chain.
But now I would like to manually run Proguard directly on the library jar as outlined in the step #3 in this thread.
So after copying the library jar to the libs/
folder, I ran:
java -jar C:/adt-bundle-windows-x86_64/sdk/tools/proguard/lib/proguard.jar @../bin/proguard.txt -verbose -injar mylibproj.jar
And what I get in return is about zillion (more or less) warning messages like this:
Warning: com.unilj.mylib.FancyDialog: can't find referenced class java.lang.String
Why am I receiving this (what am I doing wrong?) and how can I fix it?
Thanks.