Modify change Activity Proxy function to autogenerate

This commit is contained in:
2023-04-08 02:23:35 +08:00
parent 099ece1e97
commit dc079e7dc8
9 changed files with 366 additions and 44 deletions

View File

@@ -0,0 +1,56 @@
/*
* YukiHookAPI - An efficient Hook API and Xposed Module solution built in Kotlin.
* Copyright (C) 2019-2023 HighCapable
* https://github.com/fankes/YukiHookAPI
*
* MIT License
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* This file is Created by fankes on 2023/4/8.
* Thanks for providing https://github.com/cinit/QAuxiliary/blob/main/app/src/main/java/io/github/qauxv/lifecycle/Parasitics.java
*/
@file:Suppress("ClassName", "UNUSED_PARAMETER")
package com.highcapable.yukihookapi.hook.xposed.parasitic.activity.delegate.impl
import android.os.Handler
/**
* HandlerDelegateImpl 注入 Stub
*/
object HandlerDelegateImpl_Impl {
/**
* 获取 [Handler.Callback] 实例 [Class] 名称
*
* 返回值将在每次编译时自动生成
* @return [String]
*/
val wrapperClassName get(): String = error("Stub!")
/**
* 从 [Handler.Callback] 创建实例
*
* 方法内容将在每次编译时自动生成
* @param baseInstance [Handler.Callback] 实例 - 可空
* @return [Handler.Callback]
*/
fun createWrapper(baseInstance: Handler.Callback? = null): Handler.Callback = error("Stub!")
}

View File

@@ -0,0 +1,49 @@
/*
* YukiHookAPI - An efficient Hook API and Xposed Module solution built in Kotlin.
* Copyright (C) 2019-2023 HighCapable
* https://github.com/fankes/YukiHookAPI
*
* MIT License
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* This file is Created by fankes on 2023/4/8.
* Thanks for providing https://github.com/cinit/QAuxiliary/blob/main/app/src/main/java/io/github/qauxv/lifecycle/Parasitics.java
*/
@file:Suppress("unused", "ClassName", "UNUSED_PARAMETER")
package com.highcapable.yukihookapi.hook.xposed.parasitic.activity.delegate.impl
import android.app.ActivityManager
/**
* IActivityManagerProxyImpl 注入 Stub
*/
object IActivityManagerProxyImpl_Impl {
/**
* 创建 [ActivityManager] 代理
*
* 方法内容将在每次编译时自动生成
* @param clazz 代理的目标 [Class]
* @param instance 代理的目标实例
* @return [Any] 代理包装后的实例
*/
fun createWrapper(clazz: Class<*>?, instance: Any): Any = error("Stub!")
}