From 41d0d90ec490da83c6e3d7f03babd5e55d8dcbc0 Mon Sep 17 00:00:00 2001 From: Adpro <101449500+adproqwq@users.noreply.github.com> Date: Tue, 23 Jan 2024 15:07:26 +0800 Subject: [PATCH 1/2] =?UTF-8?q?feat(=E5=BF=AB=E7=A0=81=E4=B8=87=E8=83=BD?= =?UTF-8?q?=E6=92=AD=E6=94=BE=E5=99=A8):=20=E5=85=A8=E5=B1=8F=E5=B9=BF?= =?UTF-8?q?=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.kmsoft.fvplayer.ts | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/apps/com.kmsoft.fvplayer.ts diff --git a/src/apps/com.kmsoft.fvplayer.ts b/src/apps/com.kmsoft.fvplayer.ts new file mode 100644 index 000000000..3ec080c7d --- /dev/null +++ b/src/apps/com.kmsoft.fvplayer.ts @@ -0,0 +1,30 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.kmsoft.fvplayer', + name: '快码万能播放器', + groups: [ + { + key: 1, + name: '全屏广告', + activityIds: [ + 'com.kmsoft.fvplayer.activity.MainActivity', + 'com.kmsoft.fvplayer.activity.PayActivity', + ], + rules: [ + { + key: 0, + name: '腾讯SDK', + matches: '[id="android:id/content"] >n FrameLayout[index=2][childCount=1] > ImageView', + snapshotUrls: 'https://i.gkd.li/import/14019546', + }, + { + key: 1, + name: '快手SDK', + matches: '[vid="ksad_tk_view"] >n @ViewGroup[clickable=true] > ImageView', + snapshotUrls: 'https://i.gkd.li/import/14019547', + }, + ], + }, + ], +}); From 29927280c55351c2d9b833454229379012943808 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 23 Jan 2024 07:08:09 +0000 Subject: [PATCH 2/2] chore(actions): check_format_lint --- src/apps/com.kmsoft.fvplayer.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/apps/com.kmsoft.fvplayer.ts b/src/apps/com.kmsoft.fvplayer.ts index 3ec080c7d..2772b019c 100644 --- a/src/apps/com.kmsoft.fvplayer.ts +++ b/src/apps/com.kmsoft.fvplayer.ts @@ -15,13 +15,15 @@ export default defineAppConfig({ { key: 0, name: '腾讯SDK', - matches: '[id="android:id/content"] >n FrameLayout[index=2][childCount=1] > ImageView', + matches: + '[id="android:id/content"] >n FrameLayout[index=2][childCount=1] > ImageView', snapshotUrls: 'https://i.gkd.li/import/14019546', }, { key: 1, name: '快手SDK', - matches: '[vid="ksad_tk_view"] >n @ViewGroup[clickable=true] > ImageView', + matches: + '[vid="ksad_tk_view"] >n @ViewGroup[clickable=true] > ImageView', snapshotUrls: 'https://i.gkd.li/import/14019547', }, ],