From 1fc9c2f28204588df0984f9d79491689f0c6a8e5 Mon Sep 17 00:00:00 2001 From: walklty <47232102+walklty@users.noreply.github.com> Date: Fri, 24 Nov 2023 00:02:32 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=8D=8E=E4=B8=BA=E9=92=B1=E5=8C=85):=20?= =?UTF-8?q?=E5=AE=8C=E6=95=B4=E6=9C=8D=E5=8A=A1=E6=A8=AA=E5=B9=85=E6=8F=90?= =?UTF-8?q?=E7=A4=BA=20(#2426)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit close #2418 --- src/apps/com.huawei.wallet.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/apps/com.huawei.wallet.ts diff --git a/src/apps/com.huawei.wallet.ts b/src/apps/com.huawei.wallet.ts new file mode 100644 index 00000000..b7c85b07 --- /dev/null +++ b/src/apps/com.huawei.wallet.ts @@ -0,0 +1,24 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.huawei.wallet', + name: '华为钱包', + groups: [ + { + key: 1, + name: '服务提示', + enable: false, + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + quickFind: true, + rules: [ + { + matches: + '[text="开启钱包扩展服务"] +2 [id="com.huawei.wallet:id/linear_close"]', + snapshotUrls: 'https://i.gkd.li/import/13441814', + }, + ], + }, + ], +});