From 69988ecbd3fbb0ec1b3c4b43428cc68f5d688ff3 Mon Sep 17 00:00:00 2001 From: xiaowonet <33050133+xiaowonet@users.noreply.github.com> Date: Thu, 9 Nov 2023 23:51:58 +0800 Subject: [PATCH] =?UTF-8?q?feat(OPPO=20=E5=95=86=E5=9F=8E):=20=E5=8D=87?= =?UTF-8?q?=E7=BA=A7=E6=8F=90=E7=A4=BA+=E5=BC=80=E5=B1=8F=E5=B9=BF?= =?UTF-8?q?=E5=91=8A=20(#1940)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(OPPO 商城): 提升提示+开屏广告 * chore(actions): check_format_lint --------- Co-authored-by: github-actions[bot] --- src/apps/com.oppo.store.ts | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/apps/com.oppo.store.ts diff --git a/src/apps/com.oppo.store.ts b/src/apps/com.oppo.store.ts new file mode 100644 index 00000000..47ce7c13 --- /dev/null +++ b/src/apps/com.oppo.store.ts @@ -0,0 +1,26 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.oppo.store', + name: 'OPPO商城', + groups: [ + { + key: 1, + name: '升级提示', + desc: '点击下次再说', + quickFind: true, + actionMaximum: 1, + activityIds: 'com.oppo.store.MainActivity', + rules: '@[text="下次再说"] -n [text="发现新版本"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/13295202', + }, + { + key: 2, + name: '弹窗广告', + quickFind: true, + activityIds: 'com.oppo.store.MainActivity', + rules: 'ImageView[id="com.oppo.store:id/dialog_delete"][desc="关闭"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/13295201', + }, + ], +});