From 278e56786be8ec6d0ea6bef8f5fe4078280039ab Mon Sep 17 00:00:00 2001 From: jiuqianyuan <39406781+jiuqianyuan@users.noreply.github.com> Date: Sun, 24 Dec 2023 20:19:59 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=B7=A5=E7=A8=8B=E7=9B=B8=E6=9C=BA):?= =?UTF-8?q?=E5=B9=BF=E5=91=8A=E5=BC=B9=E7=AA=97=20(#3272)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit close #3245 --- src/apps/com.xpx365.projphoto.ts | 39 ++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/apps/com.xpx365.projphoto.ts diff --git a/src/apps/com.xpx365.projphoto.ts b/src/apps/com.xpx365.projphoto.ts new file mode 100644 index 00000000..d47bf002 --- /dev/null +++ b/src/apps/com.xpx365.projphoto.ts @@ -0,0 +1,39 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.xpx365.projphoto', + name: '工程相机', + groups: [ + { + key: 6, + name: '广告弹窗', + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: [ + { + name: '字节广告SDK', + activityIds: + 'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity', + matches: + 'LinearLayout[clickable=true] > LinearLayout[clickable=true] > ImageView[width<90][height<90]', + snapshotUrls: 'https://i.gkd.li/import/13695604', + }, + { + name: '腾讯广告SDK', + activityIds: 'com.xpx365.projphoto.FirstActivity', + matches: + 'FrameLayout[childCount>1] > FrameLayout[childCount=1] > ImageView[width<90][height<90]', + snapshotUrls: 'https://i.gkd.li/import/13695519', + }, + { + name: '快手广告SDK', + activityIds: 'com.xpx365.projphoto.AdKS2AutoCloseActivity', + matches: + '[id="com.kwad.dy.sdk:id/ksad_tk_view"] @ViewGroup[clickable=true] > TextView[text="跳过"]', + snapshotUrls: 'https://i.gkd.li/import/13695668', + }, + ], + }, + ], +});