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
- Perform the native [Android integration steps](https://web3auth.io/docs/sdk/android/).
81
-
- For Android, the `redirectUrl` parameter is configurable, and has to be added into the `AndroidManifest.xml`.
80
+
- The `scheme` parameter in the `redirectUrl` is specificable, and has to be added into the `AndroidManifest.xml`.
82
81
83
-
#### iOS
82
+
```xml
83
+
<dataandroid:scheme="web3authrnexample" />
84
+
```
84
85
85
-
- Perform the native [iOS integration steps](https://web3auth.io/docs/sdk/ios/).
86
+
#### iOS
86
87
87
-
- You may add the `redirectUrl` to your iOS `Info.plist`, but it is not required.
88
+
-The `scheme` parameter in the `redirectUrl` is specificable here as well, however, it does not need to be added as a iOS Custom URL Scheme. You may add the `scheme` to your iOS `Info.plist`, but it is not required.
88
89
89
90
#### Register the URL scheme you intended to use for redirection
90
91
91
-
- Android `AndoidManifest.xml` (required)
92
-
- iOS `Info.plist` (optional)
92
+
- In the Web3Auth Developer Dashboard, add the URL scheme you intended to use for redirection to the **Whitelist URLs** section.
93
93
94
+
For example, the scheme mentioned is `web3authrnexample` and the `redirectUrl` mentioned is `${scheme}://openlogin`, we will whitelist:
95
+
96
+
```
97
+
web3authrnexample://openlogin
98
+
```
94
99
95
100
## 💥 Initialization & Usage
96
101
97
102
In your sign-in activity', create an `Web3Auth` instance with your Web3Auth project's configurations and
0 commit comments