From 13008148161188e08aa43eaefabe09e0af253c1b Mon Sep 17 00:00:00 2001 From: Nick Gerleman Date: Wed, 8 Nov 2023 21:43:44 -0800 Subject: [PATCH] Bump Gradle minSdkVersion (#91) Summary: https://github.com/facebookincubator/fbjni/commit/bd94aae8f47ffa012783b94bf53379f0db84f725 bumped to NDK 26 (latest LTS NDK). NDK 26 [dropped](https://github.com/android/ndk/wiki/Changelog-r26) [support](https://github.com/android/ndk/issues/1751) for KitKat, and NDK 25 already required minSDK 19, so our minSdk of 15 is too low. This bumps the minSdk, so that when we publish AARs for next fbjni published version, it errors if user is on earlier SDK. Differential Revision: D51146044 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 8790b6b..5ca8673 100644 --- a/build.gradle +++ b/build.gradle @@ -36,7 +36,7 @@ android { } defaultConfig { - minSdkVersion 15 + minSdkVersion 21 targetSdkVersion 34 buildConfigField "boolean", "IS_INTERNAL_BUILD", 'true' namespace "com.facebook.fbjni"