You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19-5Lines changed: 19 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,21 +28,25 @@ We're excited to announce the release of react-native-auth0 `v4.0.0`! Please not
28
28
29
29
### Requirements
30
30
31
-
This SDK targets apps that are using React Native SDK version `0.76.0` and up. If you're using an older React Native version, see the compatibility matrix below.
31
+
This SDK targets apps that are using React Native SDK version `0.78.0` and up. If you're using an older React Native version, see the compatibility matrix below.
32
+
33
+
This SDK fully supports React Native New Architecture and Expo 53+.
34
+
35
+
> ⚠️ **Warning**: If you are using Expo version less than 53, you need to use react-native-auth0 version 4.x or earlier. Version 5.x supports Expo 53 and above.
32
36
33
37
### Platform compatibility
34
38
35
39
The following shows platform minimums for running projects with this SDK:
36
40
37
41
| Platform | Minimum version |
38
42
| -------- | :-------------: |
39
-
| iOS |13.0 |
40
-
| Android |34|
43
+
| iOS |14.0 |
44
+
| Android |35|
41
45
42
-
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.
46
+
Our SDK requires a minimum iOS deployment target of 14.0. In your project's ios/Podfile, ensure your platform target is set to 14.0.
43
47
44
48
```
45
-
platform :ios, '13.0'
49
+
platform :ios, '14.0'
46
50
```
47
51
48
52
### Installation
@@ -123,6 +127,8 @@ Re-declare the activity manually with `tools:node="remove"` in your app's Androi
123
127
124
128
Inside the `ios` folder find the file `AppDelegate.[swift|m]` add the following to it:
125
129
130
+
For Objective-C:
131
+
126
132
```objc
127
133
#import<React/RCTLinkingManager.h>
128
134
@@ -133,6 +139,14 @@ Inside the `ios` folder find the file `AppDelegate.[swift|m]` add the following
0 commit comments