mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-23 02:05:06 +08:00
* Create com.miui.securitycenter.ts * feat(安全服务): 自动继续安装 --------- Co-authored-by: lisonge <i@songe.li> close #1901
23 lines
530 B
TypeScript
23 lines
530 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.miui.securitycenter',
|
|
name: '安全服务',
|
|
groups: [
|
|
{
|
|
enable: false,
|
|
key: 10,
|
|
name: '自动继续安装',
|
|
desc: 'USB安装应用,点击继续安装',
|
|
quickFind: true,
|
|
activityIds: 'com.miui.permcenter.install.AdbInstallActivity',
|
|
rules: [
|
|
{
|
|
matches: '[text="继续安装"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13269875',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|