feat(Crunchyroll): Add Hide ads patch (#5201)
This commit is contained in:
parent
b94daacf01
commit
d338989cb4
4 changed files with 66 additions and 0 deletions
|
|
@ -10,6 +10,7 @@ import app.revanced.patcher.extensions.InstructionExtensions.removeInstruction
|
|||
import app.revanced.patcher.patch.BytecodePatchContext
|
||||
import app.revanced.patcher.patch.PatchException
|
||||
import app.revanced.patcher.util.proxy.mutableTypes.MutableClass
|
||||
import app.revanced.patcher.util.proxy.mutableTypes.MutableField
|
||||
import app.revanced.patcher.util.proxy.mutableTypes.MutableField.Companion.toMutable
|
||||
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
|
||||
import app.revanced.patcher.util.smali.ExternalLabel
|
||||
|
|
@ -1021,6 +1022,14 @@ private fun MutableMethod.overrideReturnValue(value: String, returnLate: Boolean
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the given AccessFlags from the field.
|
||||
*/
|
||||
internal fun MutableField.removeFlags(vararg flags: AccessFlags) {
|
||||
val bitField = flags.map { it.value }.reduce { acc, flag -> acc and flag }
|
||||
this.accessFlags = this.accessFlags and bitField.inv()
|
||||
}
|
||||
|
||||
internal fun BytecodePatchContext.addStaticFieldToExtension(
|
||||
className: String,
|
||||
methodName: String,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue