rn-in-app-update
Version:
Perform in-app updates easily
9 lines (7 loc) • 364 B
JavaScript
const RNInAppUpdate = {
checkUpdate: () => platformNotCurrentlySupported(),
onUpdateDownloaded: (callback) => platformNotCurrentlySupported(),
forceCompleteUpdate: () => platformNotCurrentlySupported()
}
const platformNotCurrentlySupported = () => console.warn("RNInAppUpdate doesn't support iOS at the moment");
export default RNInAppUpdate;