mirror of
https://github.com/revanced/revanced-patches
synced 2024-11-10 13:09:22 +01:00
feat(inshorts): hide-ads
patch (#1828)
This commit is contained in:
parent
47ff447f8e
commit
04a2accfe9
@ -0,0 +1,9 @@
|
|||||||
|
package app.revanced.patches.inshorts.ad.annotations
|
||||||
|
|
||||||
|
import app.revanced.patcher.annotation.Compatibility
|
||||||
|
import app.revanced.patcher.annotation.Package
|
||||||
|
|
||||||
|
@Compatibility([Package("com.nis.app")])
|
||||||
|
|
||||||
|
@Target(AnnotationTarget.CLASS)
|
||||||
|
internal annotation class HideAdsCompatibility
|
@ -0,0 +1,9 @@
|
|||||||
|
package app.revanced.patches.inshorts.ad.fingerprints
|
||||||
|
|
||||||
|
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
|
||||||
|
import org.jf.dexlib2.Opcode
|
||||||
|
|
||||||
|
object InshortsAdsFingerprint : MethodFingerprint(
|
||||||
|
"V",
|
||||||
|
strings = listOf("GoogleAdLoader","exception in requestAd")
|
||||||
|
)
|
@ -0,0 +1,38 @@
|
|||||||
|
package app.revanced.patches.inshorts.ad.patch
|
||||||
|
|
||||||
|
import app.revanced.extensions.toErrorResult
|
||||||
|
import app.revanced.patcher.data.BytecodeContext
|
||||||
|
import app.revanced.patcher.annotation.Description
|
||||||
|
import app.revanced.patcher.annotation.Name
|
||||||
|
import app.revanced.patcher.annotation.Version
|
||||||
|
import app.revanced.patcher.extensions.addInstruction
|
||||||
|
import app.revanced.patcher.patch.BytecodePatch
|
||||||
|
import app.revanced.patcher.patch.PatchResult
|
||||||
|
import app.revanced.patcher.patch.PatchResultSuccess
|
||||||
|
import app.revanced.patcher.patch.annotations.Patch
|
||||||
|
import app.revanced.patches.inshorts.ad.annotations.HideAdsCompatibility
|
||||||
|
import app.revanced.patches.inshorts.ad.fingerprints.InshortsAdsFingerprint
|
||||||
|
|
||||||
|
@Patch
|
||||||
|
@Name("hide-ads")
|
||||||
|
@Description("Removes ads from Inshorts.")
|
||||||
|
@HideAdsCompatibility
|
||||||
|
@Version("0.0.1")
|
||||||
|
class HideAdsPatch : BytecodePatch(
|
||||||
|
listOf(InshortsAdsFingerprint)
|
||||||
|
) {
|
||||||
|
override fun execute(context: BytecodeContext): PatchResult {
|
||||||
|
InshortsAdsFingerprint.result?.let { result ->
|
||||||
|
result.apply {
|
||||||
|
mutableMethod.addInstruction(
|
||||||
|
0,
|
||||||
|
"""
|
||||||
|
return-void
|
||||||
|
"""
|
||||||
|
)
|
||||||
|
}
|
||||||
|
} ?: return InshortsAdsFingerprint.toErrorResult()
|
||||||
|
|
||||||
|
return PatchResultSuccess()
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user