Checklist
Affected version
0.28.0
Steps to reproduce the bug
- install app
- deny notifiacation permission request
- Go to settings > notification
- wait for the snackbar to appear
- use it to open the android system app's notification settings
- enable notifications
- use hardware back button to go back
Expected behavior
detect the changed permission state and make the settings on the page accessible.
Actual behavior
the in-app notification settings page does not recognize the changed permission
Screenshots/Screen recordings
No response
Logs
No response
Affected Android/Custom ROM version
No response
Affected device model
No response
Additional information
Currently, a new intent is launched to open the ANdorid app settings. The current implementation just starts an intent and tries to detect changes in onResume() which works if something different than the back button is used.
Using registerForActivityResult might be a solution to this.
Checklist
Affected version
0.28.0
Steps to reproduce the bug
Expected behavior
detect the changed permission state and make the settings on the page accessible.
Actual behavior
the in-app notification settings page does not recognize the changed permission
Screenshots/Screen recordings
No response
Logs
No response
Affected Android/Custom ROM version
No response
Affected device model
No response
Additional information
Currently, a new intent is launched to open the ANdorid app settings. The current implementation just starts an intent and tries to detect changes in
onResume()which works if something different than the back button is used.Using
registerForActivityResultmight be a solution to this.