Browse Source

Centralize NDK and CMAKE versions

Signed-off-by: Álvaro Brey Vilas <alvaro.brey@nextcloud.com>
Álvaro Brey Vilas 3 years ago
parent
commit
ec98c5db52
3 changed files with 13 additions and 2 deletions
  1. 3 1
      .github/workflows/qa.yml
  2. 8 1
      app/build.gradle
  3. 2 0
      ndk.env

+ 3 - 1
.github/workflows/qa.yml

@@ -20,7 +20,9 @@ jobs:
                     distribution: "temurin"
                     java-version: 11
             -   name: Install NDK and cmake
-                run: /usr/local/lib/android/sdk/tools/bin/sdkmanager 'ndk;21.4.7075529' 'cmake;3.18.1'
+                run: |
+                    source ndk.env
+                    /usr/local/lib/android/sdk/tools/bin/sdkmanager "ndk;${NDK_VERSION}" "cmake;${CMAKE_VERSION}"
             -   name: Build QA
                 if: ${{ steps.check-secrets.outputs.ok == 'true' }}
                 env:

+ 8 - 1
app/build.gradle

@@ -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

+ 2 - 0
ndk.env

@@ -0,0 +1,2 @@
+NDK_VERSION=21.4.7075529
+CMAKE_VERSION=3.18.1