I am trying to use Linking.openURL(App-Prefs:NOTIFICATIONS_ID&path=${bundleId});
to open the system notifications setting page for the app but it is just opening phone’s settings.
Does anybody know how to achieve that? If above is the correct approach, are there any requirements/configurations, from a project point of view, that i should check/add for that to work (iOS 14)?
ty
Direct access to the app’s notifications section via code is not possible on iOS 14. The only way is to open the app’s general settings, and the user will be able to navigate to the desired section themselves.
Linking.openSettings();
7