Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I delete .apk files after installing app on my android phone [closed]

A considerable amount of space is used up by .apk files on my phone with apps which cannot be moved to the sdcard (Adobe Flash and Google Maps). In those directories, there are .apk files. Can I delete these to save space and have the application work as it did before?

like image 856
Adam Avatar asked Dec 29 '22 02:12

Adam


1 Answers

Consider the APK file as a JAR file, and the act of installing an app to the phone as you adding that jar to your resources library in Eclipse.

The installation is the "link"... reading the manifest, building intents, adding your widgets to the widget list, your app to the app list etc. You still need the APK file, as this contains your executable binaries. If you delete the APK file, your app disappears!

I hope this helps explain the concept :)

Sam

like image 182
Sam Hogarth Avatar answered Jan 13 '23 10:01

Sam Hogarth