문제

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.

도움이 되었습니까?

해결책

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

다른 팁

For XOOM running android 3 honeycomb. You have to remove Upgrader.apk (not SystemUpdater).

adb pull /system/app/Upgrader.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/Upgrader.apk              //Remove the apk

From ADB with root access:

adb shell pm disable com.google.android.systemupdater

Not need delete apk.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top