现在的位置: 首页 > 综合 > 正文

adb 相关操作

2018年03月22日 ⁄ 综合 ⁄ 共 393字 ⁄ 字号 评论关闭

1  adb 发送广播

 adb shell am broadcast -a com.android.launcher4.launcherReceiver --es path "/mnt/sdcard/xx.apk" --ei action 1 --ei versionCode 21 

2  adb 更新系统私有应用

adb remount

adb push G:\launcher\Launcher4_24.apk /system/priv-app/

adb shell chmod 0644 /system/priv-app/Launcher4.apk

3  adb 打开已经安装的应用

adb shell am start
-a android.intent.action.MAIN
-c android.intent.category.LAUNCHER
-n breakan.test/breakan.test.TestActivity

抱歉!评论已关闭.