-
Notifications
You must be signed in to change notification settings - Fork 319
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: get friend list handle on TIM 4.0.95.4001
- Loading branch information
Showing
3 changed files
with
91 additions
and
39 deletions.
There are no files selected for viewing
53 changes: 53 additions & 0 deletions
53
app/src/main/java/cc/ioctl/hook/misc/ShadowInitDependencyStub.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* QAuxiliary - An Xposed module for QQ/TIM | ||
* Copyright (C) 2019-2024 QAuxiliary developers | ||
* https://github.com/cinit/QAuxiliary | ||
* | ||
* This software is an opensource software: you can redistribute it | ||
* and/or modify it under the terms of the General Public License | ||
* as published by the Free Software Foundation; either | ||
* version 3 of the License, or any later version as published | ||
* by QAuxiliary contributors. | ||
* | ||
* This software is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
* See the General Public License for more details. | ||
* | ||
* You should have received a copy of the General Public License | ||
* along with this software. | ||
* If not, see | ||
* <https://github.com/cinit/QAuxiliary/blob/master/LICENSE.md>. | ||
*/ | ||
|
||
package cc.ioctl.hook.misc | ||
|
||
import io.github.qauxv.base.annotation.FunctionHookEntry | ||
import io.github.qauxv.hook.BasePersistBackgroundHook | ||
import io.github.qauxv.step.DexDeobfStep | ||
import io.github.qauxv.step.Step | ||
import io.github.qauxv.util.dexkit.DexKit | ||
import io.github.qauxv.util.dexkit.DexKitTarget | ||
import io.github.qauxv.util.dexkit.NContactUtils_getBuddyName | ||
|
||
@FunctionHookEntry | ||
object ShadowInitDependencyStub : BasePersistBackgroundHook() { | ||
|
||
private val mDexDeobfIndexes: Array<DexKitTarget> = arrayOf( | ||
NContactUtils_getBuddyName | ||
) | ||
|
||
override fun initOnce(): Boolean { | ||
return true | ||
} | ||
|
||
override val isPreparationRequired: Boolean | ||
get() { | ||
return mDexDeobfIndexes.any { | ||
DexKit.isRunDexDeobfuscationRequired(it) | ||
} | ||
} | ||
|
||
override fun makePreparationSteps(): Array<Step> = mDexDeobfIndexes.map { DexDeobfStep(it) }.toTypedArray() | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters