MaaXBoard-Android-UM-V1.0
18
package:com.example.android.livecubes
package:com.android.internal.display.cutout.emulation.double
package:com.android.providers.telephony
package:com.android.providers.calendar
……
package:com.shenyaocn.android.usbcamera
2. Uninstall the app
Execute commands:
adb uninstall package name
For example:
Search the package name for the app in above result, such as com.shenyaocn.android.usbcamera:
D:\work\platform-tools>adb uninstall com.shenyaocn.android.usbcamera
Success
3.3.8 Copy files to/from a device
Use the pull and push commands to copy files to and from a device.
To copy a file or directory and its sub-directories from the device, execute the command: adb pull remote
local, for example:
D:\work\platform-tools>adb -s pull sdcard ./sdcard2
sdcard/: 5 files pulled, 0 skipped. 0.8 MB/s (464703 bytes in 0.565s)
To copy a file or directory and its sub-directories to the device, execute the command: adb push local
remote, for example:
D:\work\platform-tools>adb push D:\work\apk\com.shenyaocn.android.usbcamera.apk /sdcard
D:\work\apk\com.shenyaocn.android.usbcamera.apk: 1 file pushed, 0 skipped. 0.3 MB/s (21895207
bytes in 61.445s)