Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions platforms/react-native/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ experiences.

- **React Native** - Minimum version `0.76` (v4+) / `0.70` (v3 and earlier)
- **iOS** - Minimum version iOS 13
- **Android** - Minimum Java 11 & Android SDK version `23`
- **Android** - Minimum Java 11 & Android SDK version `24`

## Version Compatibility

Expand Down Expand Up @@ -108,15 +108,15 @@ npm install @shopify/checkout-kit-react-native
### 2. Minimum Android requirements

Check the `minSdkVersion` property in your `android/build.gradle` file is at
least `23`.
least `24`.

```diff
// android/build.gradle
buildscript {
ext {
buildToolsVersion = "33.0.0"
- minSdkVersion = 21
+ minSdkVersion = 23
+ minSdkVersion = 24
compileSdkVersion = 33
targetSdkVersion = 33
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ static def supportsNamespace() {
}

buildToolsVersion = "35.0.0"
minSdkVersion = 23
minSdkVersion = 24
compileSdkVersion = 36
targetSdkVersion = 35

Expand Down Expand Up @@ -99,4 +99,3 @@ dependencies {
implementation("com.fasterxml.jackson.core:jackson-databind:2.12.5")
debugImplementation(shopifySdkArtifact)
}

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
minSdkVersion=23
minSdkVersion=24
targetSdkVersion=35
compileSdkVersion=36
ndkVersion=23.1.7779620
Expand Down
Loading