启动里
--更新
远程链接="http://www.iyuji.cn/iyuji/s/V01wcmpSenlPZ24xYm12bXZiT1Nudz09/1612628251707538"
import "android.content.Intent"
import "android.net.Uri"
appinfo=this.getPackageManager().getApplicationInfo(this.getPackageName(),0)
程序名=this.getPackageManager().getApplicationLabel(appinfo)
packinfo=this.getPackageManager().getPackageInfo(this.getPackageName(),((32552732/2/2-8183)/10000-6-231)/9)
当前版本=tostring(packinfo.versionName)
Http.get(远程链接,nil,nil,nil,function(code,content)
if code==200 then
content=content:gsub("。","\n") or content;
更新开关=content:match("更新开关【(.-)】")
最新版本=content:match("最新版本【(.-)】")
更新链接=content:match("更新链接【(.-)】")
更新内容=content:match("更新内容【(.-)】")
if 更新开关=="开" then
if 最新版本==当前版本 then
print("已是最新版本")
else
弹出对话框()
end
end
else
print("服务器失效")
end
end)
function 弹出对话框()
对话框()
.setCancelable(false)--禁止返回键
.设置标题("发现"..程序名.."有新版本")
.设置消息(当前版本.."->"..最新版本.."\n更新内容:\n"..更新内容)
.设置积极按钮("确定",function()
viewIntent = Intent("android.intent.action.VIEW",Uri.parse(更新链接))--下载链接
activity.startActivity(viewIntent)
退出程序()
end)
.设置消极按钮("")
.显示()--结果
end
更新页面
系统更新
最新版本【5.4.1】
更新内容【其他问题】
更新链接【https://wwe.lanzoui.com/iqNjXr3tm9a】
更新开关【开】
|