Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I create android app in [DELETED].com they provide me apk file i want my app edit or see how to write code they used. I am beginner in android.

What I have tried:

i save my apk file in sdk floder athen try to open/see in android studio 2.3.3.
Posted
Updated 9-Oct-17 21:39pm
v2

You can't, or at least not in a way that would be of any use to you. An APK file contains compiled code, not source - and that is a binary data that isn't human readable.
You write code in characters:
if (userCount > maxUsers)
   {
   RejectRegistration(ErrCode_TooManyUsers);
   return;
   }

and that is converted into machine code:
01A52C336E00005E5E23

Which does not contain info to "undo" it back to anything you would find useful!

To learn to code, get a book, or better a course. There is no short cut here!
 
Share this answer
 
Go to Android articles[^] where you will find lots of useful information.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900