From 28f08c0cf7f7a01198ed35aa07b0786e34e283ba Mon Sep 17 00:00:00 2001 From: longm21 <145310263+longm21@users.noreply.github.com> Date: Mon, 25 Sep 2023 14:16:25 +0800 Subject: [PATCH] =?UTF-8?q?feat(HMS=20Core):=20=E9=A1=B5=E9=9D=A2=E4=B8=AD?= =?UTF-8?q?=E9=97=B4=E8=B7=B3=E5=87=BA=E5=B9=BF=E5=91=8A=20(#347)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.huawei.hwid.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/apps/com.huawei.hwid.ts diff --git a/src/apps/com.huawei.hwid.ts b/src/apps/com.huawei.hwid.ts new file mode 100644 index 00000000..3eafb45b --- /dev/null +++ b/src/apps/com.huawei.hwid.ts @@ -0,0 +1,22 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.huawei.hwid', + name: 'HMS Core', + groups: [ + { + // 我不知道这个广告从哪里来的,它出乎意料地跳出并覆盖在Gspace上面 + key: 0, + name: '页面中间跳出广告', + activityIds: [ + 'com.huawei.openalliance.ad.ppskit.activity.InnerPPSInterstitialAdActivity', + ], + rules: [ + { + matches: '[id="com.huawei.hwid:id/interstitial_close"]', + snapshotUrls: ['https://gkd-kit.gitee.io/import/12709068'], + }, + ], + }, + ], +});