Android
Open the AndroidManifest.xml file.
Code Snippet
Edit the file by adding the following code snippet:
Copied<application>
...
<activity android:name=".YourActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="your_redirect_URL"/>
</intent-filter>
</activity>
</application>