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
If people are too lazy to read through the annoyingly SPA dev docs of android:
market://details?id=
In react-native land:
Linking.openURL("market://details?id=");
Example:
Linking.openURL("market://details?id=googoo.android.btgps");
Edit:
Make sure to import Linking
in order to use it
import { View, Text, StyleSheet, Linking } from 'react-native';