The new requirements are as follow: - CMake 3.19 - Ninja 1.10 - Android Studio 4.2 - Android NDK 22.1 - Gradle 7.0 - Kotlin 1.5
7 lines
162 B
Bash
Executable File
7 lines
162 B
Bash
Executable File
#!/bin/bash
|
|
|
|
curl -OL https://github.com/ninja-build/ninja/releases/download/v1.10.2/ninja-mac.zip
|
|
unzip -q ninja-mac.zip
|
|
chmod +x ninja
|
|
export PATH="$PWD:$PATH"
|