React Native iOS Linking with HTTP Scheme

258 Views Asked by At

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"/>
0

There are 0 best solutions below