From c572017e662ee51193b6f84a156f7a5d4d30c1d4 Mon Sep 17 00:00:00 2001 From: Matt Blair Date: Mon, 8 Jan 2024 01:12:11 -0500 Subject: [PATCH] Specify NDK version in gradle script --- platforms/android/tangram/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/platforms/android/tangram/build.gradle b/platforms/android/tangram/build.gradle index cbe49029f1..2d9b95c3bd 100644 --- a/platforms/android/tangram/build.gradle +++ b/platforms/android/tangram/build.gradle @@ -5,6 +5,7 @@ version = '0.17.2-SNAPSHOT' android { compileSdk 30 + ndkVersion "25.2.9519653" // Specific ABI targets can be chosen with the 'abis' property as a comma-separated list of ABIs. // From the command line, add '-Ptangram.abis=armeabi-v7a,x86,...' to only build those ABIs.