Reputation: 43
I want to use deep linking with iOS on React Native. My URL scheme is http
instead of my app name. How is it possible to make it work using this scheme. It worked on Android by adjusting the scheme and host in AndroidManifest file.
My Linking URL is http://myapp.org/
instead of myapp://myapp.org
Here's how I did it in Android:
<data android:scheme="http" />
<data android:host="myapp.org"/>
Upvotes: 1
Views: 357