|
@@ -69,11 +69,18 @@ def versionMinor = 20
|
|
|
def versionPatch = 0
|
|
|
def versionBuild = 0 // 0-50=Alpha / 51-98=RC / 90-99=stable
|
|
|
|
|
|
+
|
|
|
+def ndkEnv = new HashMap<String, String>()
|
|
|
+file("$project.rootDir/ndk.env").readLines().each() {
|
|
|
+ def (key, value) = it.tokenize('=')
|
|
|
+ ndkEnv.put(key, value)
|
|
|
+}
|
|
|
+
|
|
|
android {
|
|
|
|
|
|
compileSdkVersion 31
|
|
|
// install this NDK version and Cmake to produce smaller APKs. Build will still work if not installed
|
|
|
- ndkVersion "21.4.7075529"
|
|
|
+ ndkVersion "${ndkEnv.get("NDK_VERSION")}"
|
|
|
|
|
|
defaultConfig {
|
|
|
minSdkVersion 23
|