wiki.xw3.org

Welcome to the xw3 Wiki! Powered by hanez

User Tools

Site Tools


android

This is an old revision of the document!


Android Stuff

Customization

Delete System Apps

Works without root:

adb shell
pm uninstall -k –user 0 [app]

Example [app] = net.oneplus.launcher

adb shell
su
mount -o rw,remount /system
rm -rf /system/app/myApp.apk
rm -rf /data/data/com.example.myapp
mount -o ro,remount /system
exit
exit

Maybe this works:

adb shell rm /system/app/MyApp*
adb uninstall org.my.app

Commands

Get device MAC

adb devices | tail -n 2 | head -n 1 | awk '{print $1}'
android.1598380804.txt.gz · Last modified: by hanez