rantravee
rantravee

Reputation: 7421

details of the update process

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 ?

Upvotes: 1

Views: 119

Answers (1)

j7nn7k
j7nn7k

Reputation: 18612

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/

Upvotes: 1

Related Questions