mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 08:44:55 +08:00
35 lines
1.0 KiB
TypeScript
35 lines
1.0 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.hd.smartVillage',
|
|
name: '恒大智慧社区',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '关闭开启通知弹窗',
|
|
quickFind: true,
|
|
actionMaximum: 1,
|
|
activityIds: [
|
|
'com.hd.smartVillage.modules.main.MainActivity',
|
|
'com.hd.smartVillage.modules.h5service.H5WebActivity',
|
|
],
|
|
rules: 'View[id="com.hd.smartVillage:id/notificationSettingCloseBtn"]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/13223669', //com.hd.smartVillage.modules.main.MainActivity
|
|
'https://i.gkd.li/import/13293000', //com.hd.smartVillage.modules.h5service.H5WebActivity
|
|
],
|
|
},
|
|
{
|
|
enable: false,
|
|
key: 2,
|
|
name: '更新弹窗',
|
|
quickFind: true,
|
|
actionMaximum: 1,
|
|
activityIds: 'com.hd.smartVillage.modules.main.MainActivity',
|
|
rules:
|
|
'TextView[id="com.hd.smartVillage:id/tv_upgrade_cancel"][text="取消"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13223642',
|
|
},
|
|
],
|
|
});
|