Android - how to install a new version of the apk 如何安裝apk新版本



The following steps assume you have adb set up and ready to go:

  1. adb remount
  2. adb shell rm /system/priv-app/ABLauncher.apk to remove the current KidLauncher.apk
  3. adb install <path to KidLauncher.apk on your machine> to install the new ABLauncher.apk
  4. adb reboot

You can see all packages installed on your device with adb shell pm list packages -f. Send it into grep if you know the name. Use this to find where other on-board packages may be located.

發佈了43 篇原創文章 · 獲贊 12 · 訪問量 7萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章