let clear = plus.downloader.createDownload(res.download_url, options);// 下载
plus.runtime.install(path, force, function(res){ //获得下载地址
console.log("安装文件成功!", res);
uni.removeSavedFile({
filePath: path,
success: function(res) {
// plus.nativeUI.closeWaiting();
console.log('删除成功', res);
if (callbacl) {
callbacl()
plus.runtime.restart();
} else {
plus.runtime.restart();
}
}
});
},function(e){
uni.showToast({
title: e.message,
icon:"none",
duration: 2000
});
// plus.nativeUI.closeWaiting();
console.log("安装wgt文件失败", JSON.stringify(e));
// plus.nativeUI.alert("安装wgt文件失败[" + e.code + "]:" + e.message);
});
TcolelAi (作者)
plus.runtime.install 安装apk 无法调起,也无报错
2022-09-13 11:07