mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 01:04:53 +08:00
22 lines
562 B
TypeScript
22 lines
562 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.android.updater',
|
|
name: '系统更新',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '更新提示-MIUI更新弹窗',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules:
|
|
'[id="com.android.updater:id/alertTitle"][text="开启智能更新"] < * +2 * > Button[id="android:id/button2"][text="暂不开启"]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/i/12715712',
|
|
'https://i.gkd.li/i/12749906',
|
|
],
|
|
},
|
|
],
|
|
});
|