关于手机" 连续点击版本号, 直到有提示开启了"开发人员选项"下载 adb 工具连接 PC 与手机adb devices 命令用于查看 PC 所连接的设备卸载百度输入法 卸载华为浏览器, 包名为 "com.huawei.browser" 或者 "com.android.browser" 卸载华为音乐, 包名为 "com.huawei.music" 或者 "package:com.android.mediacenter"_鸿蒙系统怎么删除自带软件">
赞
踩
进入 “设置->关于手机” 连续点击版本号, 直到有提示开启了"开发人员选项"
进入 “设置->系统和更新->开发人员选项”, 打开 USB 调式, 顺便可以把"自动系统更新"关了
官方地址: https://developer.android.google.cn/studio/releases/platform-tools
根据 PC 平台下载相应的 adb(android debug bridge) 工具
$ unzip platform-tools_r33.0.3-linux.zip Archive: platform-tools_r33.0.3-linux.zip inflating: platform-tools/NOTICE.txt inflating: platform-tools/adb inflating: platform-tools/dmtracedump inflating: platform-tools/e2fsdroid inflating: platform-tools/etc1tool inflating: platform-tools/fastboot inflating: platform-tools/hprof-conv inflating: platform-tools/make_f2fs inflating: platform-tools/make_f2fs_casefold inflating: platform-tools/mke2fs inflating: platform-tools/mke2fs.conf inflating: platform-tools/sload_f2fs extracting: platform-tools/source.properties inflating: platform-tools/sqlite3 inflating: platform-tools/lib64/libc++.so $ ls platform-tools platform-tools_r33.0.3-linux.zip $ cd platform-tools/ jianghuixin@Vostro-3670:~/Downloads/Tmp/platform-tools 10:11:04 $ ./adb --help
选择"传输文件"的连接选项
adb devices
命令用于查看 PC 所连接的设备
$ ./adb devices
* daemon not running; starting now at tcp:5037
* daemon started successfully
List of devices attached
H5XVB20605005176 unauthorized
手机端弹出"是否允许 USB 调试", 选中始终允许调试并确定, 再次查看设备
$ ./adb devices
List of devices attached
H5XVB20605005176 device
adb shell pm list package -s
获取已安装的应用, 输出太多仅展示部分结果
$ ./adb shell pm list package -s
package:com.android.cts.priv.ctsshim
package:com.huawei.camera
package:com.huawei.camerakit.impl
package:com.huawei.synergy
package:com.huawei.android.launcher
package:com.huawei.hms.dupdateengine
package:com.android.providers.telephony
package:com.huawei.harmonyos.foundation
package:com.huawei.androidx
...
adb shell pm uninstall --user 0 <应用包名称>
卸载指定的应用
如果输入的应用名称有误, 则会提示“Failure [not installed for 0]”
卸载百度输入法, 先进入"设置->系统和更新->语言和输入法", 关闭安全输入
./adb shell pm uninstall --user 0 com.baidu.input_huawei
卸载华为浏览器, 包名为 “com.huawei.browser” 或者 “com.android.browser”
./adb shell pm uninstall --user 0 com.huawei.browser
卸载华为音乐, 包名为 “com.huawei.music” 或者 “package:com.android.mediacenter”
./adb shell pm uninstall --user 0 com.huawei.music
卸载华为视频
./adb shell pm uninstall --user 0 com.huawei.himovie
卸载其他软件
com.huawei.phoneservice: 服务
com.huawei.ohos.famanager: 服务中心
com.huawei.bd: 用户体验计划
com.huawei.hifolder: 精品推荐
com.huawei.skytone: 天际通
com.huawei.hicar: HiCar智行
com.huawei.gameassistant: 游戏空间
com.huawei.hwdetectrepair: 智能检测
com.huawei.videoeditor: 花瓣剪辑
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。