You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
584 B
18 lines
584 B
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.initCheckSystemWebview = void 0;
|
|
function initCheckSystemWebview(manifestJson) {
|
|
// 检查Android系统webview版本 || 下载X5后启动
|
|
let plusWebView = manifestJson.plus.webView;
|
|
if (plusWebView) {
|
|
manifestJson.plus['uni-app'].webView = plusWebView;
|
|
delete manifestJson.plus.webView;
|
|
}
|
|
else {
|
|
manifestJson.plus['uni-app'].webView = {
|
|
minUserAgentVersion: '49.0',
|
|
};
|
|
}
|
|
}
|
|
exports.initCheckSystemWebview = initCheckSystemWebview;
|