Warning!!!! Warning!!!!
Do it with your own risk! For correctest, I 'm not responsered - please read it very carefully!
Source: https://www.heise.de/tipps-tricks/Android-Vorinstallierte-Apps-loeschen-ohne-Root-4324092.html
This article is in German - please use an online translator!
Here is the short form:
Open the adb shell in the computer:
Listing the packages:
List the packages the 3rd providers:
Packages forever erasing:
And install your own packages collection, on the fast and easy way
First copy the apps in to the tmp directory:
Please use here your own path, where is the collection!
The installation:
Please use the full path for the installation!
To eliminate this error:
Responser
This is normal. Important >> Success <<
Finally, the job has done, cleaning the tmp directory:
This was it, and very simple.
Do it with your own risk! For correctest, I 'm not responsered - please read it very carefully!
Source: https://www.heise.de/tipps-tricks/Android-Vorinstallierte-Apps-loeschen-ohne-Root-4324092.html
This article is in German - please use an online translator!
Here is the short form:
Open the adb shell in the computer:
Code:
adb shell
su
Code:
pm list packages |grep samsung
Code:
pm list packages -3
Code:
pm uninstall -k --user 0 [name of the package from the list]
And install your own packages collection, on the fast and easy way
First copy the apps in to the tmp directory:
Code:
cp /use/your/own/path/the/collection/*.apk /data/local/tmp
The installation:
Code:
for app in /use/the/full/path/for/the/*.apk [ type Enter]
do $(pm install --user 0 $app) [type Enter]
done; [type Enter]
To eliminate this error:
Code:
Failure [INSTALL_FAILED_INVALID_URI]
Code:
: Success: inaccessible or not found
Finally, the job has done, cleaning the tmp directory:
Code:
rm -rf /data/local/tmp/*.apk
Last edited: