Android discussion | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Android discussion

what is the structure of the android app ? (Only I know that the apk is the same format of the zip please correct me if I'm wrong)

14th Oct 2018, 4:03 PM
mohamedtalaat
mohamedtalaat - avatar
1 Answer
+ 6
yes you are right that apk is same format as zip. App contains ✔androidmanifest.xml it contains all permissions app requires and all action it does with package name, version … info. ✔classes.dex (dalvic cache) it is not even when app is uninstalled. only removed with root or by resetting phone. ✔asset folder contains assets (can be video for starting screen, some music, …) ✔res folder contains appearance of app with icons ✔lib contains lib which defines behaviour of app. written in hex … I don't remember it all. Everything based upon my experience not read anywhere. So, not 100% correct. I've extracted many apks and modified them as well as lowered size.
14th Oct 2018, 9:47 PM
Roneel
Roneel - avatar