From 66c72c6875631d73792a64a619c9c27241b449ee Mon Sep 17 00:00:00 2001 From: Kun Jinkao <45487685+Snoopy1866@users.noreply.github.com> Date: Sat, 23 Sep 2023 22:56:19 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E4=B8=AD=E4=BF=A1=E9=93=B6=E8=A1=8C):=20?= =?UTF-8?q?=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A,=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E5=BC=B9=E7=AA=97,=E5=B9=BF=E5=91=8A=E5=BC=B9=E7=AA=97=20=20(#?= =?UTF-8?q?290)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(中信银行) * feat(中信银行): 开屏广告-优化 --------- Co-authored-by: lisonge --- src/apps/com.ecitic.bank.mobile.ts | 36 ++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/apps/com.ecitic.bank.mobile.ts diff --git a/src/apps/com.ecitic.bank.mobile.ts b/src/apps/com.ecitic.bank.mobile.ts new file mode 100644 index 00000000..f50ec010 --- /dev/null +++ b/src/apps/com.ecitic.bank.mobile.ts @@ -0,0 +1,36 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.ecitic.bank.mobile', + name: '中信银行', + groups: [ + { + key: 0, + name: '开屏广告', + activityIds: ['com.ecitic.bank.mobile.ui.SplashActivity'], + rules: '[id="com.ecitic.bank.mobile:id/skip_adv_layout"]', + snapshotUrls: ['https://gkd-kit.gitee.io/import/12701203'], + }, + { + key: 1, + name: '更新弹窗', + activityIds: [ + 'com.ecitic.bank.mobile.ui.MainActivity', + 'com.miui.home.launcher.Launcher', + ], + rules: '@[text="暂不更新"] + [text="立即更新"]', + snapshotUrls: [ + 'https://gkd-kit.gitee.io/import/12701217', + 'https://gkd-kit.gitee.io/import/12701250', // activityId: 'com.miui.home.launcher.Launcher' + ], + }, + { + key: 2, + name: '广告弹窗', + activityIds: ['com.ecitic.bank.mobile.ui.webview.CordovaWebViewActivity'], + rules: + '[id="com.ecitic.bank.mobile:id/id_cordova_view"] + [id="com.ecitic.bank.mobile:id/close_product_send"]', + snapshotUrls: ['https://gkd-kit.gitee.io/import/12701230'], + }, + ], +});