5

I wonder what is the most powerful obfuscation tool (to avoid reverse engineering):

  • between R8 and ProGuard
  • between R8 and DexGuard

Thanks.

toto_tata
  • 14,526
  • 27
  • 108
  • 198
  • 1
    R8 is an APK minification tool, and it is not a goal to try to make the code difficult to reverse engineer. The term "obfuscation" is inherited from ProGuard, but internally in the code base the term "minification" is used. – sgjesse Oct 22 '18 at 07:32

1 Answers1

8

R8 is an APK minification tool, and it is not a goal to try to make the code difficult to reverse engineer. The term "obfuscation" is inherited from ProGuard, but internally in the code base the term "minification" is used.

sgjesse
  • 3,793
  • 14
  • 17