如果有可用更新,我正在使用react-native-version-check打开应用商店/播放商店,但是在iOS上,它打开iTunes商店,我想打开AppStore。
这是我的代码:
_onPressUpdate = async () => {
Linking.openURL(await VersionCheck.getStoreUrl({ignoreErrors: false, appID: "407690035", appName: "hotel-tonight-last-minute", packageName: "com.hoteltonight.android.prod"}));
}
// this appID and appName is just from some random app on the app store for testing
答案 0 :(得分:0)
要从React本机应用程序内部打开应用程序商店。 前往Google在App Store上搜索您的应用,然后复制该网址
您的应用应该在应用商店中处于活动状态,以生成链接
const url = Platform.OS === 'android' ?
'https://play.google.com/store/apps/details?id=YOUR_APP_ID' : 'https://apps.apple.com/us/app/doorhub-driver/id_YOUR_APP_ID'
Linking.openURL(url)