2020-03-14 13:06:55 +08:00

8 lines
177 B
JavaScript

import {NativeModules, Platform} from "react-native";
export function checkUpgrade() {
if (Platform.os === 'android') {
NativeModules.VersionUpgrade.checkUpgrade()
}
}