修改为更严谨的判断
This commit is contained in:
parent
9cfea9d2b9
commit
18d6c10a7b
|
@ -22,7 +22,7 @@ export function canUseHttpProtocol() {
|
||||||
// 手机端
|
// 手机端
|
||||||
if (window.cordova) {
|
if (window.cordova) {
|
||||||
// 直接确定包名
|
// 直接确定包名
|
||||||
if (nonameInitialized.includes('com.noname.shijian')) {
|
if (nonameInitialized.endsWith('com.noname.shijian/')) {
|
||||||
// 每个app自定义能升级的渠道,比如判断版本
|
// 每个app自定义能升级的渠道,比如判断版本
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
return window.noname_shijianInterfaces.getApkVersion() >= 16000;
|
return window.noname_shijianInterfaces.getApkVersion() >= 16000;
|
||||||
|
|
Loading…
Reference in New Issue