Reputation: 7421
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
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