From ad95d108f2359faffa44d86e9400459bc59eeea4 Mon Sep 17 00:00:00 2001 From: walklty <47232102+walklty@users.noreply.github.com> Date: Sun, 12 Nov 2023 23:04:09 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=B0=8F=E7=B1=B3=E5=AE=89=E8=A3=85?= =?UTF-8?q?=E5=99=A8):=20=E7=BB=A7=E7=BB=AD=E5=AE=89=E8=A3=85=20(#1986)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Create com.miui.securitycenter.ts * feat(安全服务): 自动继续安装 --------- Co-authored-by: lisonge close #1901 --- src/apps/com.miui.securitycenter.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/apps/com.miui.securitycenter.ts diff --git a/src/apps/com.miui.securitycenter.ts b/src/apps/com.miui.securitycenter.ts new file mode 100644 index 00000000..9a7c558e --- /dev/null +++ b/src/apps/com.miui.securitycenter.ts @@ -0,0 +1,22 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.miui.securitycenter', + name: '安全服务', + groups: [ + { + enable: false, + key: 10, + name: '自动继续安装', + desc: 'USB安装应用,点击继续安装', + quickFind: true, + activityIds: 'com.miui.permcenter.install.AdbInstallActivity', + rules: [ + { + matches: '[text="继续安装"]', + snapshotUrls: 'https://i.gkd.li/import/13269875', + }, + ], + }, + ], +});