I need to open Notifications Setting for a specific app using adb shell command.
I found below post, which opens the Notification using code. Any way to link to the Android notification settings for my app?
How can I implement this using adb shell?
I tried using below command: "adb shell am start -a android.settings.ACTION_APP_NOTIFICATION_SETTINGS"
But according to documentation, we need to provide Package name of the app as an input. I am not sure how to provide the input using adb shell.
I am working on Android OS >= 9.
Thanks in advance.