Added next page button in documentation

This commit is contained in:
2022-08-03 01:21:44 +08:00
parent 4160ac5822
commit 9b46c9314c
17 changed files with 65 additions and 18 deletions

View File

@@ -263,4 +263,7 @@
### 1.0 | 2022.02.14
- 首个版本提交至 Maven
- 首个版本提交至 Maven
<br/><br/>
[浏览下一篇 ➡️](about/future.md)

View File

@@ -8,4 +8,7 @@
## 助力维护
感谢您选择并使用 `YukiHookAPI`,如有代码相关的建议和请求,可在 Github 提交 Pull Request。
感谢您选择并使用 `YukiHookAPI`,如有代码相关的建议和请求,可在 Github 提交 Pull Request。
<br/><br/>
[浏览下一篇 ➡️](about/about.md)

View File

@@ -32,4 +32,7 @@ API 已经提供了 Xposed 原生 API 监听接口,你可以 [在这里](confi
作为 API 来讲,目前仅仅对接 `XposedBridge` 作为兼容层,还是有一定的局限性。
大部分 `inline hook` 没有 `Java` 兼容层,后期可能会考虑 `native hook``Java` 兼容层适配。
大部分 `inline hook` 没有 `Java` 兼容层,后期可能会考虑 `native hook``Java` 兼容层适配。
<br/><br/>
[浏览下一篇 ➡️](about/contacts.md)

View File

@@ -70,4 +70,7 @@
[filename](public/CurrentClass.md ':include')
[filename](public/HookResources.md ':include')
[filename](public/HookResources.md ':include')
<br/><br/>
[浏览下一篇 ➡️](about/changelog.md)

View File

@@ -22,6 +22,5 @@
后期被删除的功能将标记为 `v$version` `移除` 并会标注删除线。
## 正文
> 你可以从侧边栏找到 `Public API` 或 [点击这里](api/document) 进入 API 文档。
<br/><br/>
[浏览下一篇 ➡️](api/document)

View File

@@ -251,4 +251,7 @@ fun encase(baseContext: Context?, vararg hooker: YukiBaseHooker)
!> 切勿以 Xposed 方式使用 `encase` 方法而漏掉 `baseContext` 参数,否则你的 Hook 将完全不工作。
!> Resources Hook 功能不支持作为 Hook API 使用。
!> Resources Hook 功能不支持作为 Hook API 使用。
<br/><br/>
[浏览下一篇 ➡️](config/api-exception.md)

View File

@@ -1045,3 +1045,6 @@ method {
**解决方案**
这种情况基本上不存在,若发生上述问题,确定并非自己的代码发生的问题后,可提交日志进行反馈。
<br/><br/>
[浏览下一篇 ➡️](config/xposed-using.md)

View File

@@ -105,4 +105,7 @@ override fun attachBaseContext(base: Context?) {
}
super.attachBaseContext(base)
}
```
```
<br/><br/>
[浏览下一篇 ➡️](config/r8-proguard.md)

View File

@@ -16,4 +16,7 @@
```gradle
android.enableR8=true
```
```
<br/><br/>
[浏览下一篇 ➡️](tools/yukihookapi-projectbuilder.md)

View File

@@ -234,4 +234,7 @@ class HookEntry: IYukiHookXposedInit {
`onXposedEvent``onHook` 方法完全独立存在,互不影响,你可以继续在 `onHook` 方法中使用 `YukiHookAPI`
若要了解更多可 [点击这里](api/document?id=onxposedevent-method) 进行查看。
若要了解更多可 [点击这里](api/document?id=onxposedevent-method) 进行查看。
<br/><br/>
[浏览下一篇 ➡️](config/api-using.md)

View File

@@ -536,4 +536,7 @@ if(YukiHookAPI.Status.isModuleActive) {
!> 需要确保 `YukiHookAPI.Configs.isEnableHookModuleStatus` 是启用状态。
!> 除了提供标准 API 的 Hook 框架之外,其它情况下模块可能都将无法判断自己是否被激活。
!> 除了提供标准 API 的 Hook 框架之外,其它情况下模块可能都将无法判断自己是否被激活。
<br/><br/>
[浏览下一篇 ➡️](guide/special-feature.md)

View File

@@ -202,4 +202,7 @@ class HookEntry : IXposedHookZygoteInit, IXposedHookLoadPackage, IXposedHookInit
| [FastHook](https://github.com/turing-technician/FastHook) | ❗ | 需要自行实现 Xposed API |
| [Epic](https://github.com/tiann/epic) | ❗ | 需要自行对接 [Dexposed](https://github.com/alibaba/dexposed) |
| [TaiChi](https://github.com/taichi-framework/TaiChi) | ⭕ | 可以作为模块使用 |
| [Xposed](https://github.com/rovo89/Xposed) | ❎ | 未测试,不再推荐使用 |
| [Xposed](https://github.com/rovo89/Xposed) | ❎ | 未测试,不再推荐使用 |
<br/><br/>
[浏览下一篇 ➡️](guide/knowledge.md)

View File

@@ -80,4 +80,7 @@ App's Environment
- 掌握 Kotlin 语言,学会灵活运用 [Kotlin Lambda](https://blog.ketal.icu/2022/01/01/kotlin-lambda%E5%85%A5%E9%97%A8/) **(友情链接)**
- 掌握并了解 Kotlin 与 Java 混编、互相调用以及 Kotlin 生成的 Java 字节码
- 掌握并了解 Kotlin 与 Java 混编、互相调用以及 Kotlin 生成的 Java 字节码
<br/><br/>
[浏览下一篇 ➡️](guide/quick-start.md)

View File

@@ -245,4 +245,7 @@ override fun replaceHookedMethod(param: MethodHookParam) = null
## 迁移其它功能
`YukiHookAPI` 对 Xposed API 进行了完全重写,你可以参考 [API 文档](api/home) 以及 [特色功能](guide/special-feature) 来决定一些功能性的迁移和使用。
`YukiHookAPI` 对 Xposed API 进行了完全重写,你可以参考 [API 文档](api/home) 以及 [特色功能](guide/special-feature) 来决定一些功能性的迁移和使用。
<br/><br/>
[浏览下一篇 ➡️](config/api-example.md)

View File

@@ -183,4 +183,7 @@ override fun attachBaseContext(base: Context?) {
#### 特别说明
!> 由于你使用了自定义的 Hook 框架而并非模块,~~`YukiHookModuleStatus`~~ ~~`YukiHookModulePrefs`~~ ~~`YukiHookDataChannel`~~ 以及 Resources Hook 功能将失效。
!> 由于你使用了自定义的 Hook 框架而并非模块,~~`YukiHookModuleStatus`~~ ~~`YukiHookModulePrefs`~~ ~~`YukiHookDataChannel`~~ 以及 Resources Hook 功能将失效。
<br/><br/>
[浏览下一篇 ➡️](guide/example.md)

View File

@@ -1354,4 +1354,7 @@ loadApp(name = "com.example.demo") {
}
```
详情请参考 [AppLifecycle](api/document?id=applifecycle-class)。
详情请参考 [AppLifecycle](api/document?id=applifecycle-class)。
<br/><br/>
[浏览下一篇 ➡️](guide/move-to-new-api.md)

View File

@@ -32,4 +32,7 @@
### 多语言支持
软件语言跟随当前系统,你可以在菜单栏 **语言 (Language)** 一栏手动选择软件的界面语言。
软件语言跟随当前系统,你可以在菜单栏 **语言 (Language)** 一栏手动选择软件的界面语言。
<br/><br/>
[浏览下一篇 ➡️](api/home.md)