mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-18 15:55:29 +08:00
30 lines
753 B
TypeScript
30 lines
753 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.example.raylink_flutter',
|
|
name: 'RayLink',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '更新提示',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: '[desc="立即升级"] + [desc="以后再说"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/13659530',
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '功能类-退出软件时点击"退出程序"',
|
|
rules: [
|
|
{
|
|
quickFind: true,
|
|
activityIds: 'com.example.raylink_flutter.MainActivity',
|
|
matches: '[vid="raylink_desktop_dialog_msg_bottombtn_left_tv"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/14047538',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|