Can I decompile a Android APK or program who creat with java or kotlin code? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Can I decompile a Android APK or program who creat with java or kotlin code?

27th Mar 2020, 9:39 AM
master.cpp
2 Answers
+ 5
You can easily write a program to convert the binary to assembly. Figuring out the higher level language from there is difficult. It use to be easier before optimization, as the code for each statement was together. Now, the optimization moves things around to save instructions leaving you unable to guess what was originally there.
27th Mar 2020, 5:44 PM
John Wells
John Wells - avatar
+ 1
Yes you are right. A few day ago I Decompile my simple APK to java code.but a see many code that I not write them😐.and I couldn't find my original main activity code.
5th Apr 2020, 9:52 AM
master.cpp