I open my app settings page in any Android device doing this:
```
try{
Intent intent = new Intent();
intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
Uri uri = Uri.fromParts("package", oActivity.getPackageName(), null);
intent.setData(uri);
startActivityForResult(intent, 555);
} catch (Exception e) {
ShowException(e);
}
```
It works well in many devices I have tested, but with several Samsung devices, running Android 10, it doesn’t work. It shows an exception “not available”. Any help here?