mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 17:25:11 +08:00
29 lines
696 B
TypeScript
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',
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|