From 91198e45ae0fc364d03f54c28fd6895a54563dfd Mon Sep 17 00:00:00 2001 From: Kun Jinkao <45487685+Snoopy1866@users.noreply.github.com> Date: Mon, 25 Sep 2023 21:57:55 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=85=AC=E8=80=83=E9=9B=B7=E8=BE=BE):=20?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=BC=B9=E7=AA=97,=E9=A6=96=E9=A1=B5?= =?UTF-8?q?=E5=8F=B3=E4=BE=A7=E6=82=AC=E6=B5=AE=E5=B9=BF=E5=91=8A,=20?= =?UTF-8?q?=E9=80=9A=E7=9F=A5=E6=9D=83=E9=99=90=E5=BC=B9=E7=AA=97=EF=BC=88?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E5=85=B3=E9=97=AD=EF=BC=89=20(#365)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.maidu.gkld.ts | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/apps/com.maidu.gkld.ts diff --git a/src/apps/com.maidu.gkld.ts b/src/apps/com.maidu.gkld.ts new file mode 100644 index 00000000..1f9cc28b --- /dev/null +++ b/src/apps/com.maidu.gkld.ts @@ -0,0 +1,32 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.maidu.gkld', + name: '公考雷达', + groups: [ + { + key: 1, + name: '更新弹窗', + activityIds: 'com.maidu.gkld.ui.main.MainActivity', + rules: '[id="com.maidu.gkld:id/tv_update_next"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12715215', + }, + { + key: 2, + name: '首页右侧悬浮广告', + activityIds: 'com.maidu.gkld.ui.main.MainActivity', + rules: + '[id="com.maidu.gkld:id/fl_float"] + [id="com.maidu.gkld:id/close_image_view"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12715291', + }, + { + enable: false, + key: 10, + name: '请求通知权限弹窗', + activityIds: 'com.maidu.gkld.ui.main.MainActivity', + rules: + '[id="com.maidu.gkld:id/ll_open_app_notice"] + [id="com.maidu.gkld:id/iv_cancel"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12715250', + }, + ], +});