I want to go to the terminal setting screen when I press the button.

Asked 2 years ago, Updated 2 years ago, 74 views

We are currently developing a hybrid app with monaca.

If you want to ask questions, go to the terminal settings screen when you press the button.
Specifically, when I press the button on the current screen, I would like to go to the settings screen where Android and ios network, location information consent, and application management are performed.
I would like to support both Android and ios, so please let me know if there are any sample codes that can be moved to the settings screen.

monaca cordova

2022-09-30 14:37

1 Answers

For Android, I think this is fine.
Intent=new Intent();
int.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
int.setData(Uri.parse("package:jp.takesi.sample"));
startActivity (intent);


2022-09-30 14:37

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.