This Question and Answer are collected from stackoverflow and tested by JTuto community, is licensed under CC BY-SA 2.5. - CC BY-SA 3.0. - CC BY-SA 4.0.
Issue
I am trying to find a way how to open the google play store with my application when the user is pressing a button inside of the react-native application. Is there a way how to do this?
Solution
You can use deeplinking to redirect your user from your app using this: https://developer.android.com/distribute/tools/promote/linking.html
and the Linking
API from react-native: http://facebook.github.io/react-native/docs/linking.html
Answered By – Guillaume S.