Does proguard work to obfuscate static string constants?

后端 未结 4 359
旧时难觅i
旧时难觅i 2020-11-30 04:04

Will proguard work to obfuscate static string constants?

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-30 04:22

    What ProGuard does (if configured correctly to do so) is in-line string constants. It wouldn't make much sense to obfuscate them, think of it, a string constant could be used for representing a message to the user, and what good would it do if it were obfuscated?

提交回复
热议问题