mirror of
https://github.com/revanced/revanced-patches
synced 2024-11-10 11:49:29 +01:00
feat(twitter): hide-recommended-users
patch
Signed-off-by: oSumAtrIX <johan.melkonyan1@web.de>
This commit is contained in:
parent
3dbc5ff272
commit
e8c9a91a92
@ -0,0 +1,13 @@
|
|||||||
|
package app.revanced.patches.twitter.misc.hook.patch.recommendation.annotations
|
||||||
|
|
||||||
|
import app.revanced.patcher.annotation.Compatibility
|
||||||
|
import app.revanced.patcher.annotation.Package
|
||||||
|
|
||||||
|
@Compatibility(
|
||||||
|
[Package(
|
||||||
|
"com.twitter.android"
|
||||||
|
)]
|
||||||
|
)
|
||||||
|
@Target(AnnotationTarget.CLASS)
|
||||||
|
@Retention(AnnotationRetention.RUNTIME)
|
||||||
|
internal annotation class HideRecommendedUsersCompatibility
|
@ -0,0 +1,23 @@
|
|||||||
|
package app.revanced.patches.twitter.misc.hook.patch.recommendation.patch
|
||||||
|
|
||||||
|
import app.revanced.patcher.annotation.Description
|
||||||
|
import app.revanced.patcher.annotation.Name
|
||||||
|
import app.revanced.patcher.annotation.Version
|
||||||
|
import app.revanced.patcher.patch.annotations.DependsOn
|
||||||
|
import app.revanced.patcher.patch.annotations.Patch
|
||||||
|
import app.revanced.patches.twitter.misc.hook.json.patch.JsonHookPatch
|
||||||
|
import app.revanced.patches.twitter.misc.hook.patch.BaseHookPatchPatch
|
||||||
|
import app.revanced.patches.twitter.misc.hook.patch.recommendation.annotations.HideRecommendedUsersCompatibility
|
||||||
|
|
||||||
|
@Patch
|
||||||
|
@Name("hide-recommended-users")
|
||||||
|
@DependsOn([JsonHookPatch::class])
|
||||||
|
@Description("Hides recommended users.")
|
||||||
|
@HideRecommendedUsersCompatibility
|
||||||
|
@Version("0.0.1")
|
||||||
|
class HideRecommendedUsersPatch : BaseHookPatchPatch(HOOK_CLASS_DESCRIPTOR) {
|
||||||
|
private companion object {
|
||||||
|
const val HOOK_CLASS_DESCRIPTOR =
|
||||||
|
"Lapp/revanced/twitter/patches/hook/patch/recommendation/RecommendedUsersHook;"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user