From e084f0456ffdaff01dc9f987dfed6d5488f1308c Mon Sep 17 00:00:00 2001 From: lisonge Date: Mon, 25 Sep 2023 21:36:47 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E7=B3=BB=E7=BB=9F=E6=9B=B4=E6=96=B0):=20m?= =?UTF-8?q?iui=E6=9B=B4=E6=96=B0=E5=BC=B9=E7=AA=97=20(#359)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.android.updater.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/apps/com.android.updater.ts diff --git a/src/apps/com.android.updater.ts b/src/apps/com.android.updater.ts new file mode 100644 index 00000000..16dfed82 --- /dev/null +++ b/src/apps/com.android.updater.ts @@ -0,0 +1,17 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.android.updater', + name: '系统更新', + groups: [ + { + enable: false, + key: 0, + name: 'MIUI更新弹窗', + activityIds: 'com.android.updater.MainActivity', + rules: + '[id="com.android.updater:id/alertTitle"][text="开启智能更新"] < * +2 * > Button[id="android:id/button2"][text="暂不开启"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12715712', + }, + ], +});