2020-03-14 12:49:53 +08:00

10 lines
190 B
JavaScript

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