Skip to content

Commit

Permalink
Add details about minimum supported iOS version (#703)
Browse files Browse the repository at this point in the history
  • Loading branch information
poovamraj authored Aug 16, 2023
1 parent 93b9fc9 commit 17866cd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions MIGRATION_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 17866cd

Please sign in to comment.