When updating a mobile app, say, from Google Play, how can it apply the same update to two people who both may have different versions prior to updating?

3.05K views

When updating a mobile app, say, from Google Play, how can it apply the same update to two people who both may have different versions prior to updating?

In: Technology

3 Answers

Anonymous 0 Comments

Most of the time the update contain a completer replacement for the program. So the download it the same as if you just install it for the first time. Configuration files are kept so you setting in the app is still there after you update it.

On larger program like operation system you can have updates that is differential so you only changes stuff that is changed but that increase complexity and for a mobile app that is just a few megabytes it is not worth it.

Anonymous 0 Comments

The update completely replaces the entire app, it doesn’t update individual files. It’s the same as completely removing the app and installing the new version.

Anonymous 0 Comments

There’s two different ways of updating stuff. Think of it like fixing errors in a book. One way is to provide errata, a sort of list of things like “replace the second sentence in the fourth paragraph of the third page with this new sentence”. The other is just to send out a new copy of the book with the errors fixed. The first way usually takes less space (which means less data when updating an app), but the second version works regardless of what previous version you had, so most places provide updates that way.