mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 09:15:11 +08:00
32 lines
926 B
TypeScript
32 lines
926 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.yitong.mbank.psbc',
|
|
name: '邮储银行',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '更新弹窗',
|
|
activityIds: [
|
|
'com.yitong.mbank.psbc.module.app.view.customview.dialog.DialogUpdateApk',
|
|
],
|
|
rules: [
|
|
{
|
|
matches:
|
|
'@[id="com.yitong.mbank.psbc:id/bt_cancel"][text="暂不更新"] + [id="com.yitong.mbank.psbc:id/bt_updata"][text="立即更新"]',
|
|
snapshotUrls: ['https://gkd-kit.gitee.io/import/12685350'],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '首页广告弹窗',
|
|
activityIds:
|
|
'com.yitong.mbank.psbc.module.home.view.activity.MainActivity',
|
|
rules:
|
|
'[id="com.yitong.mbank.psbc:id/iv_theme"] + [id="com.yitong.mbank.psbc:id/iv_theme_close_btn"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/12755516',
|
|
},
|
|
],
|
|
});
|