-
Notifications
You must be signed in to change notification settings - Fork 193
Description
I tried following for IOS:
===================== First Method =============================
VersionCheck.getLatestVersion({
provider: 'appStore' // for Ios
})
.then(latestVersion => {
console.log(latestVersion);
});
===================== Second Method ===========================
VersionCheck.getLatestVersion().then(latestVersion => {
console.log(latestVersion);
});
===================== Third Method ===========================
VersionCheck.getLatestVersion({
forceUpdate: true,
provider: () => fetch(https://itunes.apple.com/${countryCode}lookup?bundleId=${packageName}
)
.then(r => r.json())
.then(({version}) => version)
}).then(latestVersion =>{
console.log(latestVersion);
});
-
Nothing get Response as Latest Verison of IOS App from appstore.
-
@kimxogus suggest any additional parameters or api changes for get latest version info