I have two projects Project_A and Project_B. Project_B is the library project for Project_A. Project_B has an external jar in its libs folder.
When I run proguard on Project_A, I get errors like:
(Unknown verification type [69] in stack map frame))
The error refers to the file present in the external bank (which is present in libs Project_B)
I use the standard proguard.cfg file that we get in the android SDK.
I tried the "-keep class. **" but still I get the same error.
Please let me know if there is a way by which I can exclude Project_B (library project) and its banks from obfuscation. I want to run proguard only on Project_A, and not on its library project.
source share