Files
AIsouler-GKD_subscription/src/apps/com.android.updater.ts
2024-07-14 12:19:31 +08:00

29 lines
696 B
TypeScript

import { defineGkdApp } from '@gkd-kit/define';
export default defineGkdApp({
id: 'com.android.updater',
name: '系统更新',
groups: [
{
key: 0,
name: '更新提示-智能更新弹窗',
fastQuery: true,
matchTime: 10000,
actionMaximum: 1,
resetMatch: 'app',
rules: [
{
matches: [
'[vid="alertTitle"][text="开启智能更新" || text="Install automatically?"]',
'[id="android:id/button2"][text="暂不开启" || text="No"]',
],
snapshotUrls: [
'https://i.gkd.li/i/15386937',
'https://i.gkd.li/i/15386869',
],
},
],
},
],
});