From 5ca5a860752fcc018412012c02fde64da9273a32 Mon Sep 17 00:00:00 2001 From: Poovamraj T T Date: Thu, 17 Aug 2023 17:45:04 +0530 Subject: [PATCH] Add instruction about minimum ios deployment target --- articles/quickstart/native/react-native/00-login.md | 6 ++++++ articles/quickstart/native/react-native/interactive.md | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/articles/quickstart/native/react-native/00-login.md b/articles/quickstart/native/react-native/00-login.md index 772142a452..c54aef2778 100644 --- a/articles/quickstart/native/react-native/00-login.md +++ b/articles/quickstart/native/react-native/00-login.md @@ -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`. diff --git a/articles/quickstart/native/react-native/interactive.md b/articles/quickstart/native/react-native/interactive.md index d774cf86a9..98fa2c083f 100644 --- a/articles/quickstart/native/react-native/interactive.md +++ b/articles/quickstart/native/react-native/interactive.md @@ -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`.