adb shell command to make Android package uninstall dialog appear

后端 未结 7 964
执笔经年
执笔经年 2020-12-07 08:30

I have adb running and device is connected to my system in debugging mode,

I want to uninstall app using intent launch using adb shell am start &l

7条回答
  •  一向
    一向 (楼主)
    2020-12-07 09:05

    In my case, I do an adb shell pm list packages to see first what are the packages/apps installed in my Android device or emulator, then upon locating the desired package/app, I do an adb shell pm uninstall -k com.package.name.

提交回复
热议问题