mirror of
https://github.com/inotia00/revanced-patches.git
synced 2025-05-08 10:34:33 +02:00
109 lines
3.8 KiB
Kotlin
109 lines
3.8 KiB
Kotlin
package app.revanced.patches.layout
|
|
|
|
import app.revanced.patcher.PatcherData
|
|
import app.revanced.patcher.extensions.AccessFlagExtensions.Companion.or
|
|
import app.revanced.patcher.patch.Patch
|
|
import app.revanced.patcher.patch.PatchMetadata
|
|
import app.revanced.patcher.patch.PatchResult
|
|
import app.revanced.patcher.patch.PatchResultSuccess
|
|
import app.revanced.patcher.signature.MethodMetadata
|
|
import app.revanced.patcher.signature.MethodSignature
|
|
import app.revanced.patcher.signature.MethodSignatureMetadata
|
|
import app.revanced.patcher.signature.PatternScanMethod
|
|
import app.revanced.patcher.smali.asInstruction
|
|
import org.jf.dexlib2.AccessFlags
|
|
import org.jf.dexlib2.Opcode
|
|
|
|
private val compatiblePackages = arrayOf("com.google.android.youtube")
|
|
|
|
class HideReelsPatch : Patch(
|
|
metadata = PatchMetadata(
|
|
"hide-reels",
|
|
"Hide reels patch",
|
|
"Hide reels on the page.",
|
|
compatiblePackages,
|
|
"1.0.0"
|
|
),
|
|
signatures = listOf(
|
|
MethodSignature(
|
|
methodSignatureMetadata = MethodSignatureMetadata(
|
|
name = "hide-reels-signature",
|
|
methodMetadata = MethodMetadata(null, null), // unknown
|
|
patternScanMethod = PatternScanMethod.Fuzzy(2), // FIXME: Test this threshold and find the best value.
|
|
compatiblePackages = compatiblePackages,
|
|
description = "Signature for the method required to be patched.",
|
|
version = "0.0.1"
|
|
),
|
|
returnType = "V",
|
|
accessFlags = AccessFlags.PUBLIC or AccessFlags.CONSTRUCTOR,
|
|
methodParameters = listOf(
|
|
"L",
|
|
"L",
|
|
"L",
|
|
"L",
|
|
"L",
|
|
"L",
|
|
"L",
|
|
"L",
|
|
"L",
|
|
"L",
|
|
"L",
|
|
"[B",
|
|
"[B",
|
|
"[B",
|
|
"[B",
|
|
"[B",
|
|
"[B"
|
|
),
|
|
opcodes = listOf(
|
|
Opcode.MOVE_OBJECT,
|
|
Opcode.MOVE_OBJECT,
|
|
Opcode.INVOKE_DIRECT,
|
|
Opcode.MOVE_OBJECT,
|
|
Opcode.IPUT_OBJECT,
|
|
Opcode.MOVE_OBJECT,
|
|
Opcode.IPUT_OBJECT,
|
|
Opcode.MOVE_OBJECT,
|
|
Opcode.IPUT_OBJECT,
|
|
Opcode.MOVE_OBJECT,
|
|
Opcode.IPUT_OBJECT,
|
|
Opcode.IPUT_OBJECT,
|
|
Opcode.MOVE_OBJECT,
|
|
Opcode.IPUT_OBJECT,
|
|
Opcode.MOVE_OBJECT_FROM16,
|
|
Opcode.IPUT_OBJECT,
|
|
Opcode.MOVE_OBJECT_FROM16,
|
|
Opcode.IPUT_OBJECT,
|
|
Opcode.NEW_INSTANCE,
|
|
Opcode.INVOKE_DIRECT,
|
|
Opcode.IPUT_OBJECT,
|
|
Opcode.NEW_INSTANCE,
|
|
Opcode.INVOKE_DIRECT,
|
|
Opcode.IPUT_OBJECT,
|
|
Opcode.MOVE_OBJECT_FROM16,
|
|
Opcode.IPUT_OBJECT,
|
|
Opcode.INVOKE_STATIC,
|
|
Opcode.MOVE_RESULT_OBJECT,
|
|
Opcode.CONST,
|
|
Opcode.CONST_4,
|
|
Opcode.INVOKE_VIRTUAL,
|
|
Opcode.MOVE_RESULT_OBJECT,
|
|
Opcode.IPUT_OBJECT
|
|
)
|
|
)
|
|
)
|
|
) {
|
|
override fun execute(patcherData: PatcherData): PatchResult {
|
|
val result = signatures.first().result!!
|
|
val implementation = result.method.implementation!!
|
|
|
|
// HideReel will hide the reel view before it is being used,
|
|
// so we pass the view to the HideReel method
|
|
implementation.addInstruction(
|
|
result.scanData.endIndex - 1,
|
|
"invoke-static { v2 }, Lfi/razerman/youtube/XAdRemover;->HideReel(Landroid/view/View;)V".asInstruction()
|
|
)
|
|
|
|
return PatchResultSuccess()
|
|
}
|
|
} |