toto_tata
toto_tata

Reputation: 15402

Android/Java obfuscation : R8 vs (ProGuard or DexGuard)?

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

Thanks.

Upvotes: 5

Views: 3463

Answers (1)

sgjesse
sgjesse

Reputation: 4628

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.

Upvotes: 9

Related Questions