Hello How to do code obfuscation in kotlin/compose...
# multiplatform
a
Hello How to do code obfuscation in kotlin/compose multiplatform app? I am getting the solutions over the internet that do obfuscate android and iOS separately. What is the best way to do it?
m
What do you want to obfuscate on iOS? The code is compiled into a native binary. Isn’t that obfuscated enough?
a
Seems so. And for android we can use proguard. right?
m
As far as I know Android uses R8.
c
yeah. r8 (afaik) is similar to proguard (uses the same rules definition) but is optimized for android. there is also dexguard (the company behind proguard) as a paid product.