Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Remove applications from Android device using ADB in Linux
- #We have used apps in Android are listed below:
- Uninstaller - Uninstall App
- https://play.google.com/store/apps/details?id=com.GoodTools.Uninstaller&hl=en&gl=US
- Package Name Viewer 2.0
- https://play.google.com/store/apps/details?id=com.csdroid.pkg&hl=en_IN&gl=US
- #Commands we have used in this video are listed below:
- #Install adb in Linux
- sudo apt-get install adb
- #Install the app using adb
- adb install -r MyApp.apk
- #start adb shell
- adb shell
- #List installed package
- adb shell pm list packages | grep packagename
- #Unistall the package
- adb shell pm uninstall -k --user 0 packagename
- #copy file from pc to mobile
- adb push fileinpc.txt /sdcard
- #Copy file from mobile to PC
- adb pull /sdcard/Download/magisk_patched.img ~/Downloads
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement