From 3b4a4829a7b73f77637eb12ff97f94c636786b17 Mon Sep 17 00:00:00 2001 From: Fabian Freund Date: Tue, 26 May 2026 17:41:40 +0200 Subject: [PATCH] set root ndk to r28 --- apps/weblibre/android/app/build.gradle | 2 +- apps/weblibre/android/build.gradle | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/weblibre/android/app/build.gradle b/apps/weblibre/android/app/build.gradle index 331d7371..8c52d59c 100644 --- a/apps/weblibre/android/app/build.gradle +++ b/apps/weblibre/android/app/build.gradle @@ -29,7 +29,7 @@ def weblibreGoMobileAar = file("../../../../native/go_mobile_runtime/build/webli android { namespace = "eu.weblibre.gecko" compileSdk = 36 - ndkVersion = flutter.ndkVersion + ndkVersion = rootProject.ext.ndkVersion compileOptions { sourceCompatibility JavaVersion.VERSION_17 diff --git a/apps/weblibre/android/build.gradle b/apps/weblibre/android/build.gradle index 238e60aa..2841dd67 100644 --- a/apps/weblibre/android/build.gradle +++ b/apps/weblibre/android/build.gradle @@ -2,6 +2,7 @@ ext { compileSdkVersion = 36 targetSdkVersion = 36 + ndkVersion = "28.2.13676358" } buildscript { @@ -34,6 +35,7 @@ subprojects { if (it.hasProperty("android")) { android { compileSdkVersion 36 + ndkVersion rootProject.ext.ndkVersion } } }