混淆问题之jar库包名和非jar库相同类名遇到混淆的问题


Warning: there were 165 instances of library classes depending on program classes.
         You must avoid such dependencies, since the program classes will
         be processed, while the library classes will remain unchanged.
         (http://proguard.sourceforge.net/manual/troubleshooting.html#dependency)

意思是某个jar有1605个 引用用到了这个class, 你新建的这个也是这个依赖,你必须处理一下,因为这些库是保持不变的,但是你这个自己新建的是会被混淆掉的。
你必须避免搜索程序的依赖关系,你需要处理一下, 我的处理方式是删除这个qq jar包,sessioninfo我就不删除我用来模拟c++ jni的,,反正又没用到 编译之后会自动移除的,虽然和jar里面的sessioninfo一模一样的包名..但是我就是不管它...

你可能感兴趣的:(混淆问题之jar库包名和非jar库相同类名遇到混淆的问题)