From 1272a78c49d76dbf092e0ba217b325cf65faf2ee Mon Sep 17 00:00:00 2001 From: touchsprite <56334053+chudongjingling@users.noreply.github.com> Date: Wed, 3 Jun 2020 19:08:08 +0800 Subject: [PATCH] =?UTF-8?q?Create=20=E6=89=8B=E5=8A=A8=E5=8D=B8=E8=BD=BD?= =?UTF-8?q?=E8=B6=8A=E7=8B=B1=E6=8F=92=E4=BB=B6.lua?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...66\212\347\213\261\346\217\222\344\273\266.lua" | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 "\346\211\213\345\212\250\345\215\270\350\275\275\350\266\212\347\213\261\346\217\222\344\273\266.lua" diff --git "a/\346\211\213\345\212\250\345\215\270\350\275\275\350\266\212\347\213\261\346\217\222\344\273\266.lua" "b/\346\211\213\345\212\250\345\215\270\350\275\275\350\266\212\347\213\261\346\217\222\344\273\266.lua" new file mode 100644 index 0000000..1adb19b --- /dev/null +++ "b/\346\211\213\345\212\250\345\215\270\350\275\275\350\266\212\347\213\261\346\217\222\344\273\266.lua" @@ -0,0 +1,14 @@ +::getInfo:: +bid = dialogInput("从 Cydia 已安装中复制应用 ID 到下方", "com.weiphone.xx", "立即卸载") +if bid ~= "" then +mSleep(1000) +toast("开始卸载……") +os.execute("dpkg -P "..bid) +mSleep(3000) +toast("卸载完成~重启设备~…") +mSleep(5000) +os.execute("reboot") +else +dialog("请填写应用 ID!", 5); +goto getInfo +end