Skip to content

Commit 0127a40

Browse files
committed
feat(expo): update for 1.1.4
1 parent e5564f2 commit 0127a40

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

content/docs/expo/guides/using-expo-sdk-in-bare-react-native.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Superwall's Expo SDK (`expo-superwall`) is now our recommended SDK for all React
2323
Before starting, ensure you have:
2424

2525
- A React Native project (compatible with React Native 0.79+)
26-
- iOS deployment target set to 15.1 or higher
26+
- iOS deployment target set to the greater of 15.1 and your installed Expo SDK's minimum. For Expo SDK 56 and newer, use 16.4 or higher.
2727
- Android minimum SDK version 21 or higher
2828
- Node.js 18 or newer
2929

@@ -56,7 +56,7 @@ npm install expo
5656
```
5757

5858
2. Configure your iOS project:
59-
- Set iOS deployment target to 15.1 in Xcode
59+
- Set the iOS deployment target in Xcode to the greater of 15.1 and your installed Expo SDK's minimum. For Expo SDK 56 and newer, use 16.4 or higher.
6060
- Update your `AppDelegate` files as per [Expo's manual instructions](https://docs.expo.dev/bare/installing-expo-modules/#manual-installation)
6161
- Run `npx pod-install` to install iOS dependencies
6262

@@ -119,4 +119,4 @@ If you encounter any issues during installation, refer to [Expo's installation g
119119

120120
## What's Next?
121121

122-
Continue with the [Superwall configuration guide](/expo/quickstart/configure) to complete your setup.
122+
Continue with the [Superwall configuration guide](/expo/quickstart/configure) to complete your setup.

content/docs/expo/quickstart/install.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ yarn dlx expo install expo-superwall
5959

6060
## Version Targeting
6161

62-
<Warning>Superwall requires iOS 15.1 or higher, as well as Android SDK 21 or higher. Ensure your Expo project targets the correct minimum OS version by updating app.json or app.config.js.</Warning>
62+
<Warning>Superwall requires iOS 15.1 or higher, as well as Android SDK 21 or higher. Your iOS deployment target must also meet the minimum required by your installed Expo SDK. For Expo SDK 56 and newer, use iOS 16.4 or higher.</Warning>
6363

6464
First, install the `expo-build-properties` config plugin if your Expo project hasn’t yet:
6565

@@ -81,7 +81,7 @@ Then, add the following to your `app.json` or `app.config.js` file:
8181
"minSdkVersion": 21
8282
},
8383
"ios": {
84-
"deploymentTarget": "15.1" // or higher
84+
"deploymentTarget": "15.1" // Use 16.4 or higher for Expo SDK 56+
8585
}
8686
}
8787
]

0 commit comments

Comments
 (0)