From 17866cd41b894b916c53ed136a159dbe339237ee Mon Sep 17 00:00:00 2001 From: Poovamraj T T Date: Wed, 16 Aug 2023 15:31:39 +0530 Subject: [PATCH] Add details about minimum supported iOS version (#703) --- MIGRATION_GUIDE.md | 1 + README.md | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/MIGRATION_GUIDE.md b/MIGRATION_GUIDE.md index 4ce54bee..5bb6e10a 100644 --- a/MIGRATION_GUIDE.md +++ b/MIGRATION_GUIDE.md @@ -18,6 +18,7 @@ - `max_age` parameter is changed to `maxAge` in `WebAuth.authorize()` - `skipLegacyListener` has been removed in `authorize` and `clearSession` - `customScheme` is now part of `ClearSessionOptions` instead of `ClearSessionParameters` in `clearSession` +- iOS minimum deployment target is now 13. This can be migrated by adding `platform :ios '13.0'` to the ios/Podfile file - Additional or custom parameters to be sent in `authorize` method should now be sent as `additionalParameters`. This includes when sending `prompt` parameter. ### Callback URL migration diff --git a/README.md b/README.md index a989af8e..1eb2fc6b 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,12 @@ The following shows platform minimums for running projects with this SDK: | iOS | 13.0 | | Android | 28 | +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' +``` + ### Installation First install the native library module: