From 0d1909855e47f4ac16ea8b698b8e7545fe3a1582 Mon Sep 17 00:00:00 2001 From: Kun Jinkao <45487685+Snoopy1866@users.noreply.github.com> Date: Mon, 25 Sep 2023 23:58:31 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E8=96=84=E8=8D=B7=E5=81=A5=E5=BA=B7):=20?= =?UTF-8?q?=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A,=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E5=BC=B9=E7=AA=97,=E5=8F=91=E7=8E=B0=E9=A1=B5=E5=B9=BF?= =?UTF-8?q?=E5=91=8A=E5=BC=B9=E7=AA=97,=20=E9=80=9A=E7=9F=A5=E6=9D=83?= =?UTF-8?q?=E9=99=90=E5=BC=B9=E7=AA=97=20(#376)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.boohee.one.ts | 41 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/apps/com.boohee.one.ts diff --git a/src/apps/com.boohee.one.ts b/src/apps/com.boohee.one.ts new file mode 100644 index 00000000..fd37dc85 --- /dev/null +++ b/src/apps/com.boohee.one.ts @@ -0,0 +1,41 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.boohee.one', + name: '薄荷健康', + groups: [ + { + key: 0, + name: '开屏广告', + activityIds: 'com.boohee.one.app.home.ui.activity.SplashActivity', + rules: '[id="com.boohee.one:id/anythink_myoffer_splash_skip"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12716929', + }, + { + key: 1, + name: '更新弹窗', + activityIds: 'com.boohee.library.update.UpdateDialogActivity', + rules: + '@[id="com.boohee.one:id/tv_ignore"] + [id="com.boohee.one:id/tv_update"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12716918', + }, + { + key: 2, + name: '发现页广告弹窗', + activityIds: 'com.sensorsdata.sf.ui.view.DialogActivity', + rules: + 'LinearLayout[childCount=2] > @ImageView[id=null][clickable=true] + ImageView', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12716970', + }, + { + enable: true, + key: 10, + name: '请求开启通知权限弹窗', + desc: '自动点击x按钮', + activityIds: + 'com.boohee.one.app.account.ui.activity.MsgCategoryActivityV2', + rules: '[id="com.boohee.one:id/img_close_push"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12716950', + }, + ], +});