Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stop Android OS auto-update

We have a variety of devices for testing purposes, and now that Froyo is being pushed (to the Nexus One so far at least), we have to constantly dismiss upgrade requests. There is no apparent "stop asking me" button.

So, is there any way I can disable OTA OS updates? We want a number of these phones to stay on old OS versions.

like image 959
DougW Avatar asked Aug 18 '10 18:08

DougW


1 Answers

Remove SystemUpdater.apk from /system/app. From terminal (with ADB)

adb pull /system/app/SystemUpdater.apk C:/Path/to/your/desktop //Backup the file (just in case)  
adb remount                                       //Remount the system partition to read-write  
adb shell rm /system/app/SystemUpdater.apk              //Remove the apk

Warning - this will permanently disable system updates, until you push SystemUpdater back to /system/app

like image 90
QRohlf Avatar answered Oct 01 '22 04:10

QRohlf