waja revidoval tento gist 9 years ago. Přejít na revizi
1 file changed, 1 insertion
amazon_fire.sh
| @@ -10,6 +10,7 @@ adb shell pm grant com.google.android.gms android.permission.INTERACT_ACROSS_USE | |||
| 10 | 10 | adb install com.android.vending-5.9.12-80391200-minAPI9.apk | |
| 11 | 11 | adb kill-server | |
| 12 | 12 | ||
| 13 | + | # See http://forum.xda-developers.com/amazon-fire/general/disable-ota-sdcard-write-access-t3220430 | |
| 13 | 14 | # block OTA updats from Amazon | |
| 14 | 15 | adb kill-server | |
| 15 | 16 | adb start-server | |
waja revidoval tento gist 9 years ago. Přejít na revizi
1 file changed, 26 insertions
amazon_fire.sh(vytvořil soubor)
| @@ -0,0 +1,26 @@ | |||
| 1 | + | #!/bin/bash | |
| 2 | + | # See http://blog.christhulhu.de/2016/06/28/amazon-kindle-fire-google-playstore-installieren-und-werbung-entfernen/ | |
| 3 | + | # Install playstore | |
| 4 | + | adb kill-server | |
| 5 | + | adb start-server | |
| 6 | + | adb install com.google.android.gms-6.6.03_\(1681564-036\)-6603036-minAPI9.apk | |
| 7 | + | adb install GoogleLoginService.apk | |
| 8 | + | adb install GoogleServicesFramework.apk | |
| 9 | + | adb shell pm grant com.google.android.gms android.permission.INTERACT_ACROSS_USERS | |
| 10 | + | adb install com.android.vending-5.9.12-80391200-minAPI9.apk | |
| 11 | + | adb kill-server | |
| 12 | + | ||
| 13 | + | # block OTA updats from Amazon | |
| 14 | + | adb kill-server | |
| 15 | + | adb start-server | |
| 16 | + | adb shell pm hide com.amazon.otaverifier | |
| 17 | + | adb shell pm hide com.amazon.device.software.ota | |
| 18 | + | adb shell pm hide com.amazon.settings.systemupdates | |
| 19 | + | adb kill-server | |
| 20 | + | ||
| 21 | + | # Get rid of advertisments | |
| 22 | + | adb kill-server | |
| 23 | + | adb start-server | |
| 24 | + | adb shell pm clear com.amazon.kindle.kso | |
| 25 | + | adb shell pm hide com.amazon.kindle.kso | |
| 26 | + | adb reboot | |