From 52371f9e9f3203e2fea922ec5004d8e01bcdd5a1 Mon Sep 17 00:00:00 2001 From: AIsouler Date: Thu, 4 Jul 2024 18:24:27 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E4=BA=91=E6=9C=8D=E5=8A=A1):=20=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.heytap.cloud.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/apps/com.heytap.cloud.ts diff --git a/src/apps/com.heytap.cloud.ts b/src/apps/com.heytap.cloud.ts new file mode 100644 index 00000000..37db507b --- /dev/null +++ b/src/apps/com.heytap.cloud.ts @@ -0,0 +1,24 @@ +import { defineGkdApp } from '@gkd-kit/define'; + +export default defineGkdApp({ + id: 'com.heytap.cloud', + name: '云服务', + groups: [ + { + key: 1, + name: '更新提示', + desc: '点击关闭', + quickFind: true, + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: [ + { + activityIds: 'com.heytap.cloud.home.ui.CloudSettingsActivity2', + matches: ['[text="检测到新版本"]', '[vid="cancel"]'], + snapshotUrls: 'https://i.gkd.li/i/16097208', + }, + ], + }, + ], +});