| 76 | std::vector<std::string> AndroidPlatformContext::android_arguments = {}; |
| 77 | |
| 78 | AndroidPlatformContext::AndroidPlatformContext(android_app *app) : |
| 79 | PlatformContext{}, app{app} |
| 80 | { |
| 81 | _external_storage_directory = details::get_external_storage_directory(app); |
| 82 | _temp_directory = details::get_external_cache_directory(app); |
| 83 | _arguments = android_arguments; |
| 84 | } |
| 85 | } // namespace vkb |
nothing calls this directly
no test coverage detected