diff options
author | breadcat | 2020-10-26 16:26:27 +0000 |
---|---|---|
committer | breadcat | 2020-10-26 16:26:27 +0000 |
commit | 45781c322dbd9524e129090b8c66958a6daf0a90 (patch) | |
tree | 9f141a27979097318451c1378911f660490a5475 /content/posts/debloating-the-lg-q6-phone.md | |
parent | 1094d6bc5baece9ed2c373b181b0e3b6b821516b (diff) | |
download | blog.minskio.co.uk-45781c322dbd9524e129090b8c66958a6daf0a90.tar.gz blog.minskio.co.uk-45781c322dbd9524e129090b8c66958a6daf0a90.tar.bz2 blog.minskio.co.uk-45781c322dbd9524e129090b8c66958a6daf0a90.zip |
Add reinstall instructions
Diffstat (limited to 'content/posts/debloating-the-lg-q6-phone.md')
-rw-r--r-- | content/posts/debloating-the-lg-q6-phone.md | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/content/posts/debloating-the-lg-q6-phone.md b/content/posts/debloating-the-lg-q6-phone.md index 49239ba..97b2e30 100644 --- a/content/posts/debloating-the-lg-q6-phone.md +++ b/content/posts/debloating-the-lg-q6-phone.md @@ -28,6 +28,7 @@ As we don't have root, you can't globally uninstall applications using `adb unin I don't use many Google products, so I uninstalled swathes of Android without any serious side effects. The full list of what I removed is... ``` +adb shell pm uninstall --user 0 com.android.calendar adb shell pm uninstall --user 0 com.android.cellbroadcastreceiver adb shell pm uninstall --user 0 com.android.chrome adb shell pm uninstall --user 0 com.android.gallery3d @@ -48,6 +49,7 @@ adb shell pm uninstall --user 0 com.google.android.videos adb shell pm uninstall --user 0 com.google.android.youtube adb shell pm uninstall --user 0 com.lge.bnr adb shell pm uninstall --user 0 com.lge.bnr.launcher +adb shell pm uninstall --user 0 com.lge.email adb shell pm uninstall --user 0 com.lge.equalizer adb shell pm uninstall --user 0 com.lge.eula adb shell pm uninstall --user 0 com.lge.eulaprovider @@ -81,4 +83,11 @@ adb shell pm uninstall --user 0 com.lge.videoplayer adb shell pm uninstall --user 0 com.lge.videostudio ``` -You'll **very, very** likely want to look up what most of these applications are/do before just blindly running the above commands.
\ No newline at end of file +You'll **very, very** likely want to look up what most of these applications are/do before just blindly running the above commands. + +Lastly, in the event you ever uninstall something you wanted to keep, you can re-install the application by issuing: +``` +adb shell cmd package install-existing application_name +``` + +* **Edit 2020-10-26:** Add reinstall instructions, remove calendar and email applications.
\ No newline at end of file |