0

I'm trying to add deeplinks/ applink to my android app built from react-native.

My question is that Is there a way to open the app directly by scanning the qr code without opening any browser

Android
  • 1,358
  • 4
  • 10
  • 22
ganesh konathala
  • 119
  • 1
  • 2
  • 12
  • you can visit this : https://stackoverflow.com/questions/3872063/launch-an-application-from-another-application-on-android – Aman Rawat Jan 07 '19 at 11:36

1 Answers1

0

I think depends on what you need:) In react-native you can access some other applications via Linking. For example the mail application:

 <TouchableOpacity onPress={() => Linking.openURL('mailto:example@gmail.com')}>
     <Text>Send Email</Text>
 </TouchableOpacity>

You should read the Linking documentation for more complex example: https://facebook.github.io/react-native/docs/linking

oma
  • 1,486
  • 9
  • 12