如何获取 Proguard 方法和 类 剥离的列表?
How to get list of stripped by Proguard methods and classes?
Proguard 在优化过程中删除未使用的方法和 类。如何获得他们的名单?
我认为你应该使用 printusage
根据proguard
-printusage [filename]
Specifies to list dead code of the input class files. The list is printed to the standard output or to the given file. For example, you can list the unused code of an application. Only applicable when shrinking.
这是将在优化时删除的代码,但您也可以控制优化过程。
Proguard 在优化过程中删除未使用的方法和 类。如何获得他们的名单?
我认为你应该使用 printusage
根据proguard
-printusage [filename]
Specifies to list dead code of the input class files. The list is printed to the standard output or to the given file. For example, you can list the unused code of an application. Only applicable when shrinking.
这是将在优化时删除的代码,但您也可以控制优化过程。