| 731 | } |
| 732 | |
| 733 | String OS_Android::get_temp_path() const { |
| 734 | if (!temp_dir_cache.is_empty()) { |
| 735 | return temp_dir_cache; |
| 736 | } |
| 737 | |
| 738 | String temp_dir = godot_io_java->get_temp_dir(); |
| 739 | if (!temp_dir.is_empty()) { |
| 740 | temp_dir_cache = _remove_symlink(temp_dir); |
| 741 | return temp_dir_cache; |
| 742 | } |
| 743 | return "."; |
| 744 | } |
| 745 | |
| 746 | String OS_Android::get_unique_id() const { |
| 747 | String unique_id = godot_io_java->get_unique_id(); |
nothing calls this directly
no test coverage detected