“Thanox Profile”的版本间差异
跳到导航
跳到搜索
(→开机自启动) |
|||
第4行: | 第4行: | ||
== 开机自启动 == | == 开机自启动 == | ||
变量名:<code>Foreground</code> 与 <code>Background</code><br> | 变量名:<code>Foreground</code> 与 <code>Background</code><br> | ||
一般情况下请使用 <code>Background</code>,<code>Foreground</code> 主要用在一些仅启动进程不足以正常运行的 APP,如 <code>小米健康运动</code> (只开进程手表无法收到任何通知)。 | 一般情况下请使用 <code>Background</code>,<code>Foreground</code> 主要用在一些仅启动进程不足以正常运行的 APP,如 <code>小米健康运动</code> (只开进程手表无法收到任何通知) 。另不建议移除 <code>Thread.sleep(3000);</code>。密集地执行 <code>activity.launchProcessForPackage</code> 会导致需要启动多个应用的时候部分不成功 。 | ||
<pre> | <pre> | ||
[{ | [{ | ||
第13行: | 第13行: | ||
"actions": | "actions": | ||
[ | [ | ||
"foreach (el : globalVarOf$Background) {activity.launchProcessForPackage(el);}", | "foreach (el : globalVarOf$Background) {activity.launchProcessForPackage(el); Thread.sleep(3000);}", | ||
"foreach (el : globalVarOf$Foreground) {activity.launchMainActivityForPackage(el);}" | "foreach (el : globalVarOf$Foreground) {activity.launchMainActivityForPackage(el); Thread.sleep(3000);}" | ||
] | ] | ||
}] | }] |
2022年7月21日 (四) 09:16的版本
Thanox Pro 情景模式
开机自启动
变量名:Foreground
与 Background
一般情况下请使用 Background
,Foreground
主要用在一些仅启动进程不足以正常运行的 APP,如 小米健康运动
(只开进程手表无法收到任何通知)。另不建议移除 Thread.sleep(3000);
。密集地执行 activity.launchProcessForPackage
会导致需要启动多个应用的时候部分不成功。
[{ "name": "System Boot Ready Running", "description": "Global Variant: Foreground, Background", "priority": 1, "condition": "systemReady == true", "actions": [ "foreach (el : globalVarOf$Background) {activity.launchProcessForPackage(el); Thread.sleep(3000);}", "foreach (el : globalVarOf$Foreground) {activity.launchMainActivityForPackage(el); Thread.sleep(3000);}" ] }]
进程守护 (启动应用进程)
变量名:Background
[{ "name": "Keep Background Running", "description": "Global Variant: Background", "priority": 1, "condition": "pkgKilled == true && globalVarOf$Background.contains(pkgName)", "actions": ["activity.launchProcessForPackage(pkgName)"] }]
进程守护 (打开应用主界面)
变量名:Foreground
主要用在一些仅启动进程不足以正常运行的 APP,如 小米健康运动
(只开进程手表无法收到任何通知)。
[{ "name": "Keep Foreground Running", "description": "Global Variant: Foreground", "priority": 1, "condition": "pkgKilled == true && globalVarOf$Foreground.contains(pkgName)", "actions": ["activity.launchMainActivityForPackage(pkgName)"] }]