This commit is contained in:
2022-02-02 02:37:16 +08:00
parent 6ff20e7290
commit 685726b2d3
10 changed files with 397 additions and 1 deletions

View File

@@ -10,6 +10,21 @@
android:supportsRtl="true"
android:theme="@style/Theme.YukiHookAPI">
<!-- 是否是xposed模块 -->
<meta-data
android:name="xposedmodule"
android:value="true" />
<!-- 模块描述 -->
<meta-data
android:name="xposeddescription"
android:value="YukiHook Xposed Module Test" />
<!-- 最低xposed版本号 -->
<meta-data
android:name="xposedminversion"
android:value="82" />
<activity
android:name=".MainActivity"
android:exported="true">

View File

@@ -0,0 +1,9 @@
package com.highcapable.yukihookapi.demo
import com.highcapable.yukihookapi.hook.init.YukiHookLoadPackage
class Yuu : YukiHookLoadPackage() {
override fun onHookStart() {
}
}