有没有办法通过我的应用商店部署当前版本?

时间:2017-10-24 00:14:17

标签: android ios react-native

我想知道是否有人知道你可以通过应用程序商店部署当前版本的方式,我正在尝试在我的应用程序中创建一个更新弹出窗口,我可以通过应用程序商店比较已部署的版本和用户的当前版本。

1 个答案:

答案 0 :(得分:1)

您可以使用此模块https://github.com/kimxogus/react-native-version-check 通过此模块,您可以找到当前版本

设置您的APP_ID和APP_NAME

VersionCheck.setAppID(APP_ID);                    // Your App ID for App Store URL
VersionCheck.setAppName(APP_NAME);                // Your App Name for App Store URL


console.log(VersionCheck.getCurrentVersion());  // You get app current install version  

VersionCheck.getLatestVersion()
  .then(latestVersion => {
    console.log(latestVersion);  //You will get app latest Version from app store
});