-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: AIsouler <[email protected]>
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { defineGkdApp } from '@gkd-kit/define'; | ||
|
||
export default defineGkdApp({ | ||
id: 'com.android.email', | ||
name: '电子邮件', | ||
groups: [ | ||
{ | ||
// 小米自带电子邮件 | ||
key: 1, | ||
name: '权限提示-自启动', | ||
desc: '点击取消', | ||
matchTime: 10000, | ||
actionMaximum: 1, | ||
resetMatch: 'app', | ||
rules: [ | ||
{ | ||
fastQuery: true, | ||
activityIds: 'com.wps.multiwindow.main.HomeActivity', | ||
matches: [ | ||
'[text^="检测到您的自启动权限未开启"]', | ||
'[text="取消"][clickable=true]', | ||
], | ||
exampleUrls: 'https://e.gkd.li/1eacdaf8-1405-44d8-a9b9-228e913c5180', | ||
snapshotUrls: 'https://i.gkd.li/i/17276404', | ||
}, | ||
], | ||
}, | ||
], | ||
}); |