let's assume I would like to protect the Android binary against disassembling or byte code debugging - are there any solutions for that available on market for both java and native C/C++ code?
Thanks a lot STeN
|
let's assume I would like to protect the Android binary against disassembling or byte code debugging - are there any solutions for that available on market for both java and native C/C++ code? Thanks a lot STeN
| |||||
feedback
|
|
Compiling a binary should be enough to obfuscate it and java/dalvik byte code can be obfuscated by proguard, it's built in eclipse ADT plugin. Regards, Stéphane | |||||||||
feedback
|