hi,
i would like to now where c++ code is packed for android realease, in the apk file? obb file?
is it obfuscated or just translation in java of c++ code…
do i need proguard?
thx
s
The compiler outputs binary files, it’s not translated to java. They are for all intents and purposes, practically impossible to decompile - unless you include .pdb’s or pack in symbols.
C++ compiles down to machine code. If someone manages to reverse engineer that, hire them!
Thanks for replies, have a nice day!