From 74e8ed2f0f67d5c5048ab8ebd848abe53794856d Mon Sep 17 00:00:00 2001 From: Kun Jinkao <45487685+Snoopy1866@users.noreply.github.com> Date: Sat, 28 Oct 2023 23:00:44 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E8=8A=9D=E5=A3=AB=E6=BC=AB=E7=94=BB)=20?= =?UTF-8?q?=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A=E3=80=81=E5=B9=BF=E5=91=8A?= =?UTF-8?q?=E5=BC=B9=E7=AA=97=20(#1456)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat 开屏广告 * feat 广告弹窗 --- src/apps/com.ping.cimoc.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/apps/com.ping.cimoc.ts diff --git a/src/apps/com.ping.cimoc.ts b/src/apps/com.ping.cimoc.ts new file mode 100644 index 00000000..80dea4e9 --- /dev/null +++ b/src/apps/com.ping.cimoc.ts @@ -0,0 +1,24 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.ping.cimoc', + name: '芝士漫画', + groups: [ + { + key: 0, + name: '开屏广告', + activityIds: 'com.ping.cimoc.ui.activity.SplashActivity', + matchLauncher: true, + rules: '[id="com.ping.cimoc:id/splash_container"] >n [text="跳过"]', + snapshotUrls: 'https://i.gkd.li/import/13187773', + }, + { + key: 1, + name: '广告弹窗', + activityIds: 'com.ping.cimoc.ui.activity.MainActivity', + rules: + 'ImageView < FrameLayout + FrameLayout > FrameLayout[childCount=1] > ImageView', + snapshotUrls: 'https://i.gkd.li/import/13187751', + }, + ], +});