-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcom.huawei.systemmanager.ts
More file actions
43 lines (42 loc) · 1.08 KB
/
Copy pathcom.huawei.systemmanager.ts
File metadata and controls
43 lines (42 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { defineGkdApp } from '@gkd-kit/define';
export default defineGkdApp({
id: 'com.huawei.systemmanager',
name: '手机管家',
groups: [
{
key: 1,
name: '确认删除',
desc: '251121',
rules: [
{
matches: [
'[text^="是否删除"] <<n [id="android:id/contentPanel"] + [id="android:id/buttonPanel"] >2 @[text*="删除"]',
],
fastQuery: true,
resetMatch: 'match',
activityIds: [
'com.huawei.harassmentinterception.ui.InterceptionActivity',
],
},
],
},
{
key: 2,
name: '自启改为手动,',
desc: '260118',
rules: [
{
matches: [
'[id="android:id/alertTitle"][text="手动管理"] <<n * +n * [id="android:id/button1"][text="确定"]',
],
actionDelay: 20000,
fastQuery: true,
resetMatch: 'match',
activityIds: [
'com.huawei.systemmanager.appcontrol.activity.StartupAppControlActivity',
],
},
],
},
],
});