Menu
Newbedev LogoNEWBEDEV Python Javascript Linux Cheat sheet
Newbedev LogoNEWBEDEV
  • Python 1
  • Javascript
  • Linux
  • Cheat sheet
  • Contact

Android - How to reinstall an accidentally uninstalled app through ADB?

Technically the command adb shell pm unistall -k --user 0 does not uninstall an app from the device. Instead it just removes it from a user.

There are a couple of ways to get the removed app back to the user. One way is. Through an adb shell with the command:

adb shell cmd package install-existing <package_name>

Or an extreme way would be through a factory reset of the device.

Tags:

Uninstallation

Adb

Related

Android - Is this Android phone Android 9.0 or Android 6.0? Android - Where to get old LineageOS ROMs? Android - How Magisk works? Android - Drive sends an almost-daily "1 file is now available offline" notification Android - "Fastboot devices" command doesn't work after macos high sierra 10.14.4 upgrade Android - Lowest Bluetooth audio volume is too loud Android - Has the setting to disable icon frames been removed on the Galaxy S10 lineup? Android - What is this icon in my status bar that looks like a finger pointing at 3 horizontal lines? Android - How to Disable Screen Rotation Icon Android - How to recover a deleted file from /data partition? Android - Disabling Download Manager notifications Android - Cannot rate apps on Google Play

Recent Posts

Pandas how to find column contains a certain value Recommended way to install multiple Python versions on Ubuntu 20.04 Build super fast web scraper with Python x100 than BeautifulSoup How to convert a SQL query result to a Pandas DataFrame in Python How to write a Pandas DataFrame to a .csv file in Python
© 2021 newbedevPrivacy Policy