From 1033f8c76c8f78801b17fa82da98c3c871b81242 Mon Sep 17 00:00:00 2001 From: Matt Blair Date: Mon, 8 Jan 2024 01:11:23 -0500 Subject: [PATCH] 'compileSdkVersion' -> 'compileSdk' --- platforms/android/tangram/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/android/tangram/build.gradle b/platforms/android/tangram/build.gradle index 1ad42aa933..cbe49029f1 100644 --- a/platforms/android/tangram/build.gradle +++ b/platforms/android/tangram/build.gradle @@ -4,7 +4,7 @@ group = 'com.mapzen.tangram' version = '0.17.2-SNAPSHOT' android { - compileSdkVersion 30 + compileSdk 30 // 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.