Skip to content

Commit 2e8ebe3

Browse files
Update README about minimum iOS version (#17)
* Update README.md * Update README.md * Update README.md for expo * fix: update CLI to RNC CLI --------- Co-authored-by: Oskar Kwaśniewski <oskarkwasniewski@icloud.com>
1 parent 60354cf commit 2e8ebe3

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,34 @@ https://github.com/user-attachments/assets/fbdd9ce2-f4b9-4d0c-bd91-2e62bb422d69
1717
yarn add react-native-bottom-tabs
1818
```
1919

20+
If you use React Native version 0.75 or lower:
21+
22+
- For `@react-native-community/cli` users, open Podfile in ios folder and change minimum iOS version to `14.0` before `pod install`
23+
24+
```patch
25+
-platform :ios, min_ios_version_supported
26+
+platform :ios, '14.0'
27+
```
28+
29+
- For Expo users, install `expo-build-properties`, open app.json file and update `deploymentTarget` for `ios` as below
30+
31+
```json
32+
{
33+
"expo": {
34+
"plugins": [
35+
[
36+
"expo-build-properties",
37+
{
38+
"ios": {
39+
"deploymentTarget": "14.0"
40+
}
41+
}
42+
]
43+
],
44+
}
45+
}
46+
```
47+
2048
## 📖 Documentation
2149

2250
### Usage with React Navigation

0 commit comments

Comments
 (0)