Normally in desktop applications we see that the patch only applies to the part of the application that were updated, but for Android applications we need to reinstall the whole package. I mean we need to download the whole installer again. Are there any reasons (security) for this?
Why Android needs the whole package to update?
350 views Asked by P basak AtThere are 2 answers
It doesn't. In fact modern Google play will just download the differences between the new and old versions, not the whole package. If you update apps often you'll notice that it reports the download size as many MBs but after downloading just a few hundred KBs the installation starts immediately
Google Play has begun to introduce "delta", partial updates, the download only of the new code, reducing data traffic on smartphones.
Google Play delta updates allow to the users to save data traffic included in their subscription or simply shorten the time to download applications.
The Instagram update to the version 3.0, released in the Google Play store Thursday, August 16, 2012, included a packet of only 3MB in size instead of full application of 13MB.
http://www.byetech.com/2012/08/google-play-has-started-to-offer.html
The installation package, the
.apk
file, is signed as one entity. Android makes sure that either everything is ok or it will not install it.But, you can split your application into different parts and update them separately since Android offers a way to let applications that share the same certificate interact in more ways than applications that do not share certificate.
Read more here about signing your application and your options: http://developer.android.com/tools/publishing/app-signing.html