Android Proguard, removing all Log statements and merging packages

后端 未结 1 1024
时光取名叫无心
时光取名叫无心 2020-12-05 05:20
  1. I have about 5 packages in my project, is it possible to merge all the packages into one large package, I want to do this to make hacking more difficult.

  2. <
相关标签:
1条回答
  • 2020-12-05 05:41

    The option -repackageclasses moves obfuscated classes into a single given package:

    http://proguard.sourceforge.net/manual/usage.html#repackageclasses

    You can optionally combine it with -allowaccessmodification for better results.

    0 讨论(0)
提交回复
热议问题