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
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.
adb shell pm list packages
adb shell pm uninstall -k com.package.name