tags:

views:

32

answers:

1

Hi,

Could someone describe to me what happens when an android application is updated? Is it the old version uninstalled and then installed the new one ? What about the resources the application might need ?

+1  A: 

Usually the application itself is removed and user data (like sqlite DBs and preference files) remains on the device. You can check those files on the emulator (or on your phone) by using the adb shell. The data is stored in /data/data/YOUR_PACKAGE/

Johe Green