| 419 | } |
| 420 | |
| 421 | void OS_Android::main_loop_focusin() { |
| 422 | DisplayServerAndroid::get_singleton()->send_window_event(DisplayServer::WINDOW_EVENT_FOCUS_IN); |
| 423 | if (OS::get_singleton()->get_main_loop()) { |
| 424 | OS::get_singleton()->get_main_loop()->notification(MainLoop::NOTIFICATION_APPLICATION_FOCUS_IN); |
| 425 | } |
| 426 | audio_driver_android.set_pause(false); |
| 427 | } |
| 428 | |
| 429 | Error OS_Android::shell_open(const String &p_uri) { |
| 430 | return godot_io_java->open_uri(p_uri); |
no test coverage detected