From bcc9412f0f4aefa798fe9703bd1d24d9a80e8a2d Mon Sep 17 00:00:00 2001 From: jiuqianyuan <39406781+jiuqianyuan@users.noreply.github.com> Date: Wed, 25 Oct 2023 00:17:10 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E8=8D=A3=E8=80=80=E5=BA=94=E7=94=A8?= =?UTF-8?q?=E5=B8=82=E5=9C=BA):=20=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A;=20?= =?UTF-8?q?=E5=B9=BF=E5=91=8A=E5=BC=B9=E7=AA=97;=20=E6=82=AC=E6=B5=AE?= =?UTF-8?q?=E7=AA=97=E5=B0=8F=E5=B9=BF=E5=91=8A;=20=E6=8E=A8=E9=80=81?= =?UTF-8?q?=E9=80=9A=E7=9F=A5=20(#1382)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(荣耀应用市场): * chore(actions): check_format_lint --------- Co-authored-by: github-actions[bot] close #1376 --- src/apps/com.hihonor.appmarket.ts | 42 +++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 src/apps/com.hihonor.appmarket.ts diff --git a/src/apps/com.hihonor.appmarket.ts b/src/apps/com.hihonor.appmarket.ts new file mode 100644 index 00000000..e88e0a4d --- /dev/null +++ b/src/apps/com.hihonor.appmarket.ts @@ -0,0 +1,42 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.hihonor.appmarket', + name: '荣耀应用市场', + groups: [ + { + key: 0, + name: '开屏广告', + quickFind: true, + matchLauncher: true, + activityIds: 'com.hihonor.appmarket.module.main.MainActivity', + rules: '[id="com.hihonor.appmarket:id/tv_operation_skip"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/13063925', + }, + { + key: 1, + name: '广告弹窗', + quickFind: true, + activityIds: 'com.hihonor.android.launcher.unihome.UniHomeLauncher', + rules: '[id="com.hihonor.appmarket:id/iv_dialog_operation_close"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/13063815', + }, + { + key: 2, + name: '悬浮窗小广告', + quickFind: true, + activityIds: 'com.hihonor.appmarket.module.main.MainActivity', + rules: '[id="com.hihonor.appmarket:id/iv_floating_close"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/13063928', + }, + { + key: 3, + name: '推送通知', + quickFind: true, + activityIds: 'com.hihonor.appmarket.module.main.MainActivity', + rules: + 'TextView[text="接收通知"] < LinearLayout < LinearLayout +n [id="android:id/buttonPanel"] Button[text="否"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/13073319', + }, + ], +});