Deep Link to App Specific Notifications Screen

Greetings: I’d like to deep link into my app’s specific notifications settings. You can get to this screen two different ways through the Settings app:

  1. Settings >> Notifications >> My App
  2. Settings >> My App >> Notifications

Either of those locations is what I would like to link to. I’ve tried the following approaches, but none seem to work.

Linking.openURL(`app-settings://`) 
// Opens "Settings >> My App", not "Settings >> My App >> Notifications"

Linking.openURL(`app-settings://notification`) 
// Opens "Settings >> My App", not "Settings >> My App >> Notifications"

Linking.openURL(`app-settings://notification/${Constants.manifest.ios.bundleIdentifier}`) 
// Opens "Settings >> My App", not "Settings >> My App >> Notifications"

Linking.openURL(`App-prefs:root=NOTIFICATIONS_ID`) 
// Opens "Settings", not "Settings >> Notifications >> My App"

Linking.openURL(`App-prefs:root=NOTIFICATIONS_ID&path=${Constants.manifest.ios.bundleIdentifier}`) 
// Opens "Settings", not "Settings >> Notifications >> My App"

Has anyone had success doing this? This is on iOS 12. Thanks!

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.