Will yGuard work in obfuscation of Android applications? #178
Replies: 1 comment 2 replies
-
|
As far as I know, source code for Android applications is first compiled to Java byte code and then said byte code is translated into Dalvik byte code using the conversion tool dx. If you can insert an additional build step after the aforementioned compilation and before the aforementioned translation, you probably could use yGuard to obfuscate your Android application. Given the fact that Android's app optimizer R8 already supports obfuscation, I am curious why you would want to obfuscate your Android app using yGuard instead of R8? (I would guess enabling R8 app optimization is much less of a hassle than modifying your build chain to use yGuard.) |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
As of now i could perform obfuscation on jar files using yGuard. Can I apply yGuard on Android applications, will that apply obfuscation for generated android apk. When the decompile the same, Can i see the obfuscation applied to the apk, the same way how r8/proguard rules can be used.
Beta Was this translation helpful? Give feedback.
All reactions