在我的android项目中,我在项目根目录下有一个libs/
目录。
MyProject/
- libs/
- lib1.jar
- lib2.jar
在Eclipse中,我将这些jar添加到我的构建路径中。
在我的proguard配置中,我尝试将这些罐子从混淆中排除。所以我在 proguard.cfg
中定义了以下几行-libraryjars /libs/lib1.jar
-libraryjars /libs/lib2.jar
但我收到了错误:
Can't read [/libs/lib1.jar] (No such file or directory)
然后,我改为-libraryjars /libs/lib1.jar
但我得到can't find referenced class
错误,指向我的lib的类。
我的配置错在哪里?在我的案例中使用-libraryjars
的正确方法是什么?