| 27 | namespace platform { |
| 28 | #ifdef __ANDROID__ |
| 29 | std::string get_os_version_string() { return "Android"; } |
| 30 | std::string get_app_data_folder(const std::string &app_name) { |
| 31 | QString data_path = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation); |
| 32 | return data_path.toStdString(); |
nothing calls this directly
no outgoing calls
no test coverage detected