()
| 128 | struct AndroidConfig; |
| 129 | impl AndroidConfig { |
| 130 | fn ndk_dir() -> String { |
| 131 | format!( |
| 132 | "{android_sdk_dir}{separator}ndk{separator}{android_ndk_version}", |
| 133 | android_sdk_dir = env::var("ANDROID_HOME").unwrap(), |
| 134 | separator = MAIN_SEPARATOR_STR, |
| 135 | android_ndk_version = ANDROID_NDK_VERSION |
| 136 | ) |
| 137 | } |
| 138 | |
| 139 | fn toolchains_dir() -> String { |
| 140 | format!( |
nothing calls this directly
no outgoing calls
no test coverage detected