Issue
Is is possible to decode native code compiled and liked to android through ndk ?
and is it possible from the apk to reconstruct the project and import it to eclipse (or any other IDE)?
is it possible to use the .so files in the apk file again to reconstruct the project or with another project if the java native function declaration is done appropriately?
Solution
Decompiling native to source code is (probably, I wasn't trying it) possible, there are some tools like this https://www.hex-rays.com/products/decompiler/
It's possible to reconstruct project from apk but code will be obfuscated (weird class and method names). You may check your app against apk2gold (https://github.com/lxdvs/apk2gold)
As for your last question, with a little effort - yes.
Answered By - jaroslawj
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.