From 790e7bab2e26a3be0109b20eafdc0d5198f1ea7e Mon Sep 17 00:00:00 2001 From: rhunk <101876869+rhunk@users.noreply.github.com> Date: Fri, 26 Jul 2024 13:44:45 +0200 Subject: [PATCH] fix(native): ndk version --- native/build.gradle.kts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/native/build.gradle.kts b/native/build.gradle.kts index 164d1623..504b11eb 100644 --- a/native/build.gradle.kts +++ b/native/build.gradle.kts @@ -10,6 +10,9 @@ android { namespace = rootProject.ext["applicationId"].toString() + ".nativelib" compileSdk = 34 + buildToolsVersion = "34.0.0" + ndkVersion = "26.3.11579264" + buildFeatures { buildConfig = true }