0

I have written a few apps with react-native and I would like to have a "Main" app to link to all those apps.

How can I open those apps from the "Main" app?

PS: All my apps are not and will not be uploaded to either app store or play store so app id or play id are not a solution

3
  • the only way I know now is to use Linking.openURL but my apps does not have an URL to link with Commented Dec 27, 2017 at 3:19
  • You will need a url or an app store id. Its the only way. Commented Dec 27, 2017 at 3:45
  • So how can I create a URL for my apps? Commented Dec 27, 2017 at 3:47

1 Answer 1

1

You can add url in info.plist files and create URL for specific app. You can use Linking class of react-native to open the page.

there is demo for android and ios Read this documentation

For Android you can use this link:

Android deep link

Sign up to request clarification or add additional context in comments.

1 Comment

How about Android? I have added the code : <action android:name="android.intent.action.VIEW" /> <data android:scheme="LinkingTest" android:host="App"/> to AndroidManifest.xml but it doesn't seem working. Have I missed any steps?

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.