From 9d2ac14557c3436cee19d8973f271877a7237e7a Mon Sep 17 00:00:00 2001 From: agnostic-apollo Date: Fri, 30 May 2025 12:06:20 +0500 Subject: [PATCH] Fixed: Use `ndkVersion` specified in project properties or `$JITPACK_NDK_VERSION` env variable for `termux-shared` library --- termux-shared/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/termux-shared/build.gradle b/termux-shared/build.gradle index 3710035e..30e95362 100644 --- a/termux-shared/build.gradle +++ b/termux-shared/build.gradle @@ -3,6 +3,7 @@ apply plugin: 'maven-publish' android { compileSdkVersion project.properties.compileSdkVersion.toInteger() + ndkVersion = System.getenv("JITPACK_NDK_VERSION") ?: project.properties.ndkVersion dependencies { implementation "androidx.appcompat:appcompat:1.3.1"