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 &l
adb shell am start &l
Use this command in cmd:
adb shell pm uninstall -k com.packagename
For example:
adb shell pm uninstall -k com.fedmich.pagexray
The -k flag tells the package manager to keep the cache and data directories around, even though the app is removed. If you want a clean uninstall, don't specify -k.
-k