Skip to content

Commit

Permalink
Add instruction about minimum ios deployment target
Browse files Browse the repository at this point in the history
  • Loading branch information
poovamraj committed Aug 17, 2023
1 parent 66f17b1 commit 5ca5a86
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions articles/quickstart/native/react-native/00-login.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ npm install react-native-auth0 --save

### Additional iOS step: install the module Pod

Our SDK requires a minimum iOS deployment target of 13.0. In your project's `ios/Podfile``, ensure your platform target is set to 13.0.

```
platform :ios '13.0'
```

CocoaPods is the iOS package management tool the React Native framework uses to install itself into your project. For the iOS native module to work with your iOS app, first install the library Pod. If you're familiar with older React Native SDK versions, this is similar to the previous _linking a native module_. The process is now simplified:

Change directory into the `ios` folder and run `pod install`.
Expand Down
6 changes: 6 additions & 0 deletions articles/quickstart/native/react-native/interactive.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ npm install react-native-auth0 --save

### Additional iOS step: install the module Pod

Our SDK requires a minimum iOS deployment target of 13.0. In your project's `ios/Podfile``, ensure your platform target is set to 13.0.

```
platform :ios '13.0'
```

CocoaPods is the iOS package management tool the React Native framework uses to install itself into your project. For the iOS native module to work with your iOS app, first install the library Pod. If you're familiar with older React Native SDK versions, this is similar to the previous _linking a native module_. The process is now simplified:

Change directory into the `ios` folder and run `pod install`.
Expand Down

0 comments on commit 5ca5a86

Please sign in to comment.