当前位置:网站首页>Use the adb command to manage applications
Use the adb command to manage applications
2022-08-11 06:35:00 【rest of my life love static】
Step 1: Upload the app
adb push 

Step 2: Install the app
adb shell pm install -t -r 
Step 3: View the package name
adb shell pm list package -f
Step 4: View the startup Activity class name
4-1: adb shell
4-2: dumpsys package
4-3:找到Category为Launcher的Activity
Step 5: Launch the app
adb shell am start -n /

Step 6: Uninstall the app
adb uninstall
PS: At work, you may encounter uninstalling applications under the system. If the above command does not work, you can try the following command: adb shell pm uninstall --user 0
边栏推荐
猜你喜欢
JS进阶网页特效(pink老师笔记)
智能风控中台设计与落地
Matplotlib找不到字体,打印乱码
NUC980-镜像烧录
OpenMLDB官网升级,神秘贡献者地图带你快速进阶
[Meetup] OpenMLDBxDolphinScheduler engineering and scheduling link link characteristics, building the end-to-end MLOps workflow
栈stack
Day 84
Error: Flash Download failed - “Cortex-M4“-STM32F4
OpenMLDB v0.5.0 released | Performance, cost, flexibility reach new heights
随机推荐
SearchGuard证书配置
Node stepping on the pit 80 port is occupied
Tinker的自我介绍
Day 84
字节(byte)和位(bit)
js learning advanced BOM part (pink teacher notes)
JS advanced web page special effects (pink teacher notes)
Day 72
ARM assembly instruction ADR and LDR
Typescript学习日记,typescript从基础到进阶(第一章)
Goldbach's conjecture and the ring of integers
端口的作用
STM32学习总结(二)——GPIO
STM32学习笔记(白话文理解版)—USART通信接口
何凯明新作ViTDET:目标检测领域,颠覆分层backbone理念
Day 81
构建面向特征工程的数据生态 ——拥抱开源生态,OpenMLDB全面打通MLOps生态工具链
使用adb命令管理应用
论文解读:跨模态/多光谱/多模态检测 Cross-Modality Fusion Transformer for Multispectral Object Detection
Promise.race学习(判断多个promise对象执行最快的一个)