mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-18 07:45:10 +08:00
22 lines
574 B
TypeScript
22 lines
574 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.miui.systemAdSolution',
|
|
name: 'miui系统广告',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '任意app开屏广告',
|
|
desc: '此广告组件可以使用ADB卸载',
|
|
rules: '[id=`com.miui.systemAdSolution:id/view_skip_button`]',
|
|
},
|
|
{
|
|
key: 1,
|
|
name: 'miui-为什么不希望看到这条推广',
|
|
desc: '关闭这个提示',
|
|
activityIds: 'com.xiaomi.ad.feedback',
|
|
rules: '[id=`com.miui.systemAdSolution:id/no_interest`]',
|
|
},
|
|
],
|
|
});
|