Files
AIsouler-GKD_subscription/src/apps/com.xiaomi.smarthome.ts
Kun Jinkao 7d9b2c5ef6 feat(米家): 米家智惠广告, 设备固件升级提示弹窗 (#88)
* feat(米家): 米家智惠广告, 设备固件升级提示弹窗

* perf(米家): 智惠广告-增加准确性

---------

Co-authored-by: lisonge <i@songe.li>
2023-09-16 12:12:08 +08:00

30 lines
857 B
TypeScript

import { defineAppConfig } from '../types';
export default defineAppConfig({
id: 'com.xiaomi.smarthome',
name: '米家',
groups: [
{
key: 0,
name: '米家智惠广告',
activityIds: 'com.xiaomi.smarthome.SmartHomeMainActivity',
rules: [
{
matches:
'RelativeLayout[id=null] > ImageView[id!=null] + ImageView[clickable=true][id!=null]',
snapshotUrls: ['https://gkd-kit.gitee.io/import/12639658'],
},
],
},
{
enable: false,
key: 1,
name: '设备固件升级提示弹窗',
activityIds: 'com.xiaomi.smarthome.framework.plugin.rn.PluginRNActivity',
snapshotUrls: 'https://gkd-kit.gitee.io/import/12639671',
rules:
'[text*="检测到"&&text*="升级"] < ViewGroup + ViewGroup > Button > [text = "取消"]',
},
],
});