react-native-app-link
react-native-app-link copied to clipboard
Is there a way to open a APK using this package(eg : unity integrated apk)
const onPresss = () => { OpenApplication.openApplication('com.dev47apps.droidcam') .then(() => {}) .catch(err => { AppLink.maybeOpenURL('droidcam://', { appName: 'DroidCam', appStoreId: '', appStoreLocale: '', playStoreId: 'com.dev47apps.droidcam', }) .then(() => {}) .catch(err => {}); }); };
import OpenApplication from 'react-native-open-application';