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.
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);
© 2024 OneMinuteCode. All rights reserved.