You can use the code below to display an Alert with the option to go to the APP settings
AlertDialog dialog = new AlertDialog.Builder(SplashScreenActivity.this).create();
dialog.setTitle(getString(R.string.grant_permission_title));
dialog.setMessage(Html.fromHtml(getString(R.string.grant_permission_message)));
dialog.setButton(AlertDialog.BUTTON_NEGATIVE, getString(R.string.ok), new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
Intent intent = new Intent();
intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
Uri uri = Uri.fromParts("package", SplashScreenActivity.this.getPackageName(), null);
intent.setData(uri);
startActivityForResult(intent, 1);
}
});