| 718 | } |
| 719 | |
| 720 | String OS_Android::get_cache_path() const { |
| 721 | if (!cache_dir_cache.is_empty()) { |
| 722 | return cache_dir_cache; |
| 723 | } |
| 724 | |
| 725 | String cache_dir = godot_io_java->get_cache_dir(); |
| 726 | if (!cache_dir.is_empty()) { |
| 727 | cache_dir_cache = _remove_symlink(cache_dir); |
| 728 | return cache_dir_cache; |
| 729 | } |
| 730 | return "."; |
| 731 | } |
| 732 | |
| 733 | String OS_Android::get_temp_path() const { |
| 734 | if (!temp_dir_cache.is_empty()) { |
nothing calls this directly
no test coverage detected