You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
249 B
JavaScript

const FALLBACK_VERSION = '1.2.1'
export const getAppVersion = () => {
try {
const info = uni.getSystemInfoSync() || {}
return info.appWgtVersion || info.appVersion || FALLBACK_VERSION
} catch (error) {
return FALLBACK_VERSION
}
}