0

When I try to open Notification Access Settings page on Samsung Galaxy S8 running Android Oreo, I'm getting "Unfortunately settings has stopped"

This is the code I'm using:

public static final String NOTIFICATION_ACCESS_SERVICE_SETTINGS_PAGE = "android.settings.ACTION_NOTIFICATION_LISTENER_SETTINGS";



startActivityForResult(new Intent(AppConstants.NOTIFICATION_ACCESS_SERVICE_SETTINGS_PAGE), 1108);

This is working fine on all other devices except Samsung Galaxy S8.

Note: I'm not getting any Log since the crash is not happening in my app.

Amar Ilindra
  • 923
  • 2
  • 11
  • 30
  • add log here more help – Samir Bhatt Nov 23 '17 at 10:41
  • the crash is in device settings. I'm not getting any log since it is not in my application. – Amar Ilindra Nov 23 '17 at 10:42
  • Samsung devices have custom TouchWiz interface, created by Samsung Electronics.(TouchWiz is available only on Samsung devices) As many files are customized, it is not possible to find the exact root cause without complete device software information and they even might need sample application code for which issue is seen. I would suggest you to report them the bug: https://stackoverflow.com/questions/4928267/where-to-report-device-specific-bugs-to-samsung – ManmeetP Nov 23 '17 at 10:43
  • @ManmeetP Thanks, I'll report it. – Amar Ilindra Nov 23 '17 at 10:45
  • Also please share the response here, it will be helpful to all. – ManmeetP Nov 23 '17 at 10:47
  • @ManmeetP I'll surely do it. – Amar Ilindra Nov 23 '17 at 10:48

1 Answers1

1

Samsung devices have custom TouchWiz interface, created by Samsung Electronics.(TouchWiz is available only on Samsung devices)
As many files are customized, it is not possible to find the exact root cause without complete device software information and they even might need sample application code for which issue is seen.
I would suggest you to report them the bug: Where to report device-specific bugs to Samsung?

ManmeetP
  • 801
  • 7
  • 17