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