In an Android app, I have a button that I want to have the functionality of opening the App Notification settings (in Android settings).
I can open the Android settings with this
startActivityForResult(new Intent(android.provider.Settings.ACTION_SETTINGS), 0);
but I want to open directly on my app notification settings
Alternative
If there is a way to turn the "Block notifications" on and off programmatically that would be ok too.