mirror of
https://github.com/inotia00/revanced-patches.git
synced 2025-06-12 21:27:43 +02:00
fix: Index
in wrong package
This commit is contained in:
28
src/main/kotlin/app/revanced/patches/Index.kt
Normal file
28
src/main/kotlin/app/revanced/patches/Index.kt
Normal file
@ -0,0 +1,28 @@
|
||||
package app.revanced.patches
|
||||
|
||||
import app.revanced.patcher.patch.Patch
|
||||
import app.revanced.patches.ad.VideoAdsPatch
|
||||
import app.revanced.patches.interaction.EnableSeekbarTappingPatch
|
||||
import app.revanced.patches.layout.*
|
||||
import app.revanced.patches.misc.IntegrationsPatch
|
||||
|
||||
/**
|
||||
* Index contains all the patches.
|
||||
*/
|
||||
@Suppress("Unused")
|
||||
object Index {
|
||||
/**
|
||||
* Array of patches.
|
||||
* New patches should be added to the array.
|
||||
*/
|
||||
val patches: Array<() -> Patch> = arrayOf(
|
||||
::IntegrationsPatch,
|
||||
::VideoAdsPatch,
|
||||
::MinimizedPlaybackPatch,
|
||||
::CreateButtonRemoverPatch,
|
||||
::HideReelsPatch,
|
||||
::HideSuggestionsPatch,
|
||||
::OldQualityLayoutPatch,
|
||||
::EnableSeekbarTappingPatch
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user