mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-23 02:05:06 +08:00
34 lines
993 B
TypeScript
34 lines
993 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.moutai.mall',
|
|
name: 'i茅台',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '全屏广告-首页广告弹窗',
|
|
activityIds: [
|
|
'com.moutai.mall.MainActivity',
|
|
'com.moutai.mall.module.splash.SplashActivity',
|
|
],
|
|
rules:
|
|
'[id="com.moutai.mall:id/ivPic"] + ViewGroup + [id="com.moutai.mall:id/vClose"]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/i/12745130', // activityId: 'com.moutai.mall.MainActivity'
|
|
'https://i.gkd.li/i/12745153', // activityId: 'com.moutai.mall.module.splash.SplashActivity'
|
|
],
|
|
},
|
|
{
|
|
enable: false,
|
|
key: 10,
|
|
name: '通知提示-请求通知权限弹窗',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules:
|
|
'@[id="com.moutai.mall:id/vClose"] - LinearLayout > [text*="开通消息通知"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/12745142',
|
|
},
|
|
],
|
|
});
|