From df81fc8f097aaae997deb6e10411b43afbdecc07 Mon Sep 17 00:00:00 2001 From: Kun Jinkao <45487685+Snoopy1866@users.noreply.github.com> Date: Sun, 15 Oct 2023 02:32:43 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E7=8F=AD=E7=BA=A7=E5=B0=8F=E7=AE=A1?= =?UTF-8?q?=E5=AE=B6)=20=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A,=E5=BA=94?= =?UTF-8?q?=E7=94=A8=E5=86=85=E5=B9=BF=E5=91=8A=E5=8D=A1=E7=89=87=20(#1071?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat 开屏广告 * feat 应用内广告卡片 close #1069 --- src/apps/com.banjixiaoguanjia.app.ts | 35 ++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/apps/com.banjixiaoguanjia.app.ts diff --git a/src/apps/com.banjixiaoguanjia.app.ts b/src/apps/com.banjixiaoguanjia.app.ts new file mode 100644 index 00000000..89cdc50f --- /dev/null +++ b/src/apps/com.banjixiaoguanjia.app.ts @@ -0,0 +1,35 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.banjixiaoguanjia.app', + name: '班级小管家', + groups: [ + { + key: 0, + name: '开屏广告', + activityIds: 'com.zero.flutter_gromore_ads.page.AdSplashActivity', + matchLauncher: true, + quickFind: true, + rules: '[id="com.byted.pangle:id/tt_splash_skip_btn"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12904614', + }, + { + key: 1, + name: '应用内广告卡片', + activityIds: 'com.banjixiaoguanjia.app.MainActivity', + rules: [ + { + key: 0, + matches: '[id="com.byted.pangle:id/tt_bu_close"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12904612', + }, + { + preKeys: 0, + key: 1, + matches: '@LinearLayout > [text="不感兴趣"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12906196', + }, + ], + }, + ], +});