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)
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.