Modify add TaiChi activation status in higher API version description in example documentation

This commit is contained in:
2023-01-02 19:35:21 +08:00
parent 0431a4378b
commit 88fc60c38c
2 changed files with 40 additions and 0 deletions

View File

@@ -666,6 +666,26 @@ For more functions, please refer to [YukiHookAPI.Status](../api/public/com/highc
::: warning
If your Module App's API version is higher than 29 and is running on a system whose target API is 29 or higher, you need to add the following permission statement in **AndroidManifest.xml** to judge the activation status of the Module App in TaiChi and Wuji.
> The following example
```xml
<queries>
<intent>
<action android:name="android.intent.action.MAIN" />
</intent>
</queries>
```
There is another solution, you can directly declare the **android.permission.QUERY_ALL_PACKAGES** permission, but it is not recommended and will be warned by code inspection.
> The following example
```xml
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
```
If the activation state of TaiChi and Wuji is included in the Module App activation judgment, the **Application** of the Module App must be extends **ModuleApplication** or **ModuleApplication** must be used directly;
The API after **1.0.91** has modified the activation logic judgment method, now you can use this API in the Module App and Host App at the same time;

View File

@@ -666,6 +666,26 @@ if(YukiHookAPI.Status.isModuleActive) {
::: warning
如果你的模块 API 版本高于 29 且正在目标 API 为 29 以上的系统中运行,你需要在 **AndroidManifest.xml** 中添加如下权限声明才能正常判断模块在太极、无极中的激活状态。
> 示例如下
```xml
<queries>
<intent>
<action android:name="android.intent.action.MAIN" />
</intent>
</queries>
```
还有一种方案,你可以直接声明 **android.permission.QUERY_ALL_PACKAGES** 权限,但是不推荐且会被代码检查警告。
> 示例如下
```xml
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
```
若模块激活判断中包含太极、无极中的激活状态,就必须将模块的 **Application** 继承于 **ModuleApplication** 或直接使用 **ModuleApplication**
**1.0.91** 版本后的 API 修改了激活逻辑判断方式,现在你可以在模块与 Hook APP (宿主) 中同时使用此 API