Skip to content

Commit

Permalink
Bump minSdk to 23 in RN OSS (#38874)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #38874

In this diff I'm increasing the minSdk of RN Android to 23 to keep it in sync with Meta min sdk

changelog: [Android][Breaking] Increase min sdk version of RN Android to 23

Reviewed By: fkgozali, NickGerleman

Differential Revision: D48177965

fbshipit-source-id: 79f46f6e1674fe9d38dc9dfbe8f0f9a43f39a712
  • Loading branch information
mdvacca authored and facebook-github-bot committed Sep 27, 2023
1 parent 271ce7e commit 70fcb1e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
up from the file to lint until it find an AndroidManifest with a minSdkVersion. This is then used
as the min SDK to lint the file.-->
<uses-sdk
android:minSdkVersion="21"
android:minSdkVersion="23"
android:targetSdkVersion="34"
/>

Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
# Android versions
minSdk = "21"
minSdk = "23"
targetSdk = "34"
compileSdk = "34"
buildTools = "34.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/template/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
buildscript {
ext {
buildToolsVersion = "34.0.0"
minSdkVersion = 21
minSdkVersion = 23
compileSdkVersion = 34
targetSdkVersion = 34
ndkVersion = "25.1.8937393"
Expand Down

0 comments on commit 70fcb1e

Please sign in to comment.