adb shell command to make Android package uninstall dialog appear
Clash Royale CLAN TAG #URR8PPP adb shell command to make Android package uninstall dialog appear I have adb running and device is connected to my system in debugging mode, adb I want to uninstall app using intent launch using adb shell am start <INTENT> adb shell am start <INTENT> I don't want to uninstall using adb uninstall com.company.apppackage and I don't want to do it even by using adb shell pm uninstall com.company.apppackage adb uninstall com.company.apppackage adb shell pm uninstall com.company.apppackage How can I send an intent with android.intent.action.DELETE action for a specific package allowing the user to see the prompt and uninstall the program? android.intent.action.DELETE 6 Answers 6 You can do it from adb using this command: adb shell am start -a android.intent.action.DELETE -d package:<your app package> can you please tel...