【文件属性】:
文件名称:查看设备情况-如何为centos 7配置静态ip地址的两种方法
文件大小:1.26MB
文件格式:PDF
更新时间:2024-07-20 04:01:50
rk3288 rk3288 android9. rochchip
(1)查看设备情况
查看连接到计算机的 Android 设备或者模拟器:
$ adb devices
返回的结果为连接至开发机的 Android 设备的序列号或是 IP 和端口号(Port)、状态。
(2)安装 APK
将指定的 APK 文件安装到设备上:
$ adb install
示例如下:
$ adb install “F:\WishTV\WishTV.apk”
重新安装应用:
$ adb install –r
示例如下:
$ adb install –r “F:\WishTV\WishTV.apk”
(3)卸载 APK
完全卸载:
$ adb uninstall
示例如下:
$ adb uninstall com.wishtv
(4)使用 rm 移除 APK 文件:
$ adb shell rm
示例如下:
$ adb shell
$ rm “system/app/WishTV.apk”
示例说明:移除“system/app”目录下的“WishTV.apk”文件。