From 6d0fcb5dc7e7180e6b814f7a0e8cf87cea59d928 Mon Sep 17 00:00:00 2001 From: Kun Jinkao <45487685+Snoopy1866@users.noreply.github.com> Date: Mon, 25 Sep 2023 00:48:12 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E8=87=AA=E8=80=83=E7=AC=94=E6=9E=9C?= =?UTF-8?q?=E9=A2=98=E5=BA=93):=20=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A,?= =?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=B9=BF=E5=91=8A=E5=BC=B9=E7=AA=97,=E8=AF=B7=E6=B1=82?= =?UTF-8?q?=E5=AE=9A=E4=BD=8D=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(#341)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.dep.biguo.ts | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/apps/com.dep.biguo.ts diff --git a/src/apps/com.dep.biguo.ts b/src/apps/com.dep.biguo.ts new file mode 100644 index 00000000..37428026 --- /dev/null +++ b/src/apps/com.dep.biguo.ts @@ -0,0 +1,38 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.dep.biguo', + name: '自考笔果题库', + groups: [ + { + key: 0, + name: '开屏广告', + activityIds: 'com.dep.biguo.mvp.ui.activity.SplashActivity', + rules: '[id="com.dep.biguo:id/adView"] [text^="跳过"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12708763', + }, + { + key: 1, + name: '更新弹窗', + activityIds: 'com.dep.biguo.dialog', + rules: '@[text="取消"] +2 [text="立即更新"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12708751', + }, + { + key: 2, + name: '首页广告弹窗', + activityIds: 'com.dep.biguo.dialog', + rules: + '[id="com.dep.biguo:id/imageView"] + [id="com.dep.biguo:id/closeView"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12708756', + }, + { + enable: false, + key: 10, + name: '请求定位权限弹窗', + activityIds: 'com.dep.biguo.mvp.ui.activity.MainActivity', + rules: '[text*="定位权限"] +2 [text="拒绝"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12708770', + }, + ], +});