From f3a66667d92a2f421caec244b39b0e6691d2df90 Mon Sep 17 00:00:00 2001 From: CallMeBill Date: Sun, 15 Oct 2023 02:31:26 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E7=BB=B4=E6=8A=A4=E5=A4=A7=E5=B8=88):=20?= =?UTF-8?q?=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A=20(#1065)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.example.maintenancemaster.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/apps/com.example.maintenancemaster.ts diff --git a/src/apps/com.example.maintenancemaster.ts b/src/apps/com.example.maintenancemaster.ts new file mode 100644 index 00000000..061df4c0 --- /dev/null +++ b/src/apps/com.example.maintenancemaster.ts @@ -0,0 +1,20 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.example.maintenancemaster', + name: '维护大师', + groups: [ + { + key: 0, + name: '开屏广告', + activityIds: ['com.weihudashi.activity.AdvertisementActivity'], + rules: [ + { + matches: + '[id="com.example.maintenancemaster:id/advertisement_countdown_ccd"]', + snapshotUrls: ['https://gkd-kit.gitee.io/import/12903877'], + }, + ], + }, + ], +});