version - What is the process behind upgradation of an app in android. Is it replacement of just the Apk or more? -
What is the process behind the upgrade of the app in Android, is it just a replacement for APK or something else
-
Is this just the replacement of the new APK file (such as resetting it) or has it been updated?
-
What happens to the database tables associated with the older version?
-
What happens to the shared priorities associated with the older version?
Can anyone tell us a proper way to emulate this operation before launching it in the market?
- Yes, the application has been replaced with the new one.
- The
database will be upgraded, so your
SQLiteOpenHelper method of method will be called, so you have to process data with care, for example You do not want to delete the entire database and table, and just upgrade some special tables that have changed.
Shardya Reference will not be deleted, they will be kept.
To simulate this, you can simply add an older version of your app to your device, and then install a new one. It will actually update your code as a
Play Store , and as
Eclipse does when you install an app again, which is your device / emulator But it is fully established.
Comments
Post a Comment