LoginSignup
3
1

More than 1 year has passed since last update.

ADBで消した(無効化)アプリを戻す

Last updated at Posted at 2020-09-17
bash
 adb shell pm uninstall -k --user 0 com.hoge.hoge

で消したアプリを戻したい

1

ほとんどのデバイスではこれで復活できます:

adb shell cmd package install-existing com.hoge.hoge

2

1のコマンドでは古いデバイスやWearOS(AndroidWear)でエラーが発生することがある様なのでこちらも使用できます:

 adb shell pm enable --user 0 com.hoge.hoge
3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1