From 36a08080e9d287b56847cbf526becf006d23d31c Mon Sep 17 00:00:00 2001 From: Dulmandakh Date: Sat, 8 Oct 2022 18:30:14 +0800 Subject: [PATCH] remove buildToolsVersion config --- android/build.gradle | 2 -- 1 file changed, 2 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index cf167cf..68495b0 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,7 +1,6 @@ apply plugin: 'com.android.library' def DEFAULT_COMPILE_SDK_VERSION = 29 -def DEFAULT_BUILD_TOOLS_VERSION = "29.0.2" def DEFAULT_MIN_SDK_VERSION = 16 def DEFAULT_TARGET_SDK_VERSION = 29 def DEFAULT_GOOGLE_PLAY_SERVICES_VERSION = "18.0.0" @@ -12,7 +11,6 @@ def safeExtGet(prop, fallback) { android { compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION) - buildToolsVersion safeExtGet('buildToolsVersion', DEFAULT_BUILD_TOOLS_VERSION) defaultConfig { minSdkVersion safeExtGet('minSdkVersion', DEFAULT_MIN_SDK_VERSION)