I want to open up my app's setting page via intent and the following code block is supposed to do just that. stackoverflow source
Could someone kindly translate it to B4A code, please?
TIA
Could someone kindly translate it to B4A code, please?
to be translated to B4A:
Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
Uri uri = Uri.fromParts("package", getPackageName(), null);
intent.setData(uri);
startActivity(intent);
TIA