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

8 lines
177 B
JavaScript

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