From 08a04f0456ed9f5d45b12fd4af82a3776a22c2f2 Mon Sep 17 00:00:00 2001 From: Nick Gerleman Date: Fri, 10 Nov 2023 16:53:18 -0800 Subject: [PATCH] Bump Gradle minSdkVersion (#91) Summary: Pull Request resolved: https://github.com/facebookincubator/fbjni/pull/91 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. Reviewed By: rshest Differential Revision: D51146044 fbshipit-source-id: de1b38de0f2bd0afe9ed7ac074eaf7eb07903d40 --- 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"