mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 00:35:17 +08:00
32 lines
960 B
TypeScript
32 lines
960 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/import/12745130', // activityId: 'com.moutai.mall.MainActivity'
|
|
'https://i.gkd.li/import/12745153', // activityId: 'com.moutai.mall.module.splash.SplashActivity'
|
|
],
|
|
},
|
|
{
|
|
enable: false,
|
|
key: 10,
|
|
name: '请求通知权限弹窗',
|
|
activityIds: 'com.moutai.mall.MainActivity',
|
|
rules:
|
|
'@[id="com.moutai.mall:id/vClose"] - LinearLayout > [text*="开通消息通知"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/12745142',
|
|
},
|
|
],
|
|
});
|