mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 08:44:55 +08:00
24 lines
625 B
TypeScript
24 lines
625 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.android.updater',
|
|
name: '系统更新',
|
|
groups: [
|
|
{
|
|
enable: false,
|
|
key: 0,
|
|
name: 'MIUI更新弹窗',
|
|
activityIds: [
|
|
'com.android.updater.MainActivity',
|
|
'com.android.settings.SubSettings',
|
|
],
|
|
rules:
|
|
'[id="com.android.updater:id/alertTitle"][text="开启智能更新"] < * +2 * > Button[id="android:id/button2"][text="暂不开启"]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/12715712',
|
|
'https://i.gkd.li/import/12749906',
|
|
],
|
|
},
|
|
],
|
|
});
|