refactor: Rename net.revanced to app.revanced

BREAKING CHANGE: Package name was changed from "net.revanced" to "app.revanced"
This commit is contained in:
Lucaskyy
2022-03-21 22:06:24 +01:00
parent 7068f7f2ad
commit 68ea89f15e
5 changed files with 26 additions and 26 deletions

View File

@ -0,0 +1,23 @@
package app.revanced.patches
import app.revanced.patcher.patch.Patch
import app.revanced.patches.ads.VideoAds
import app.revanced.patches.layouts.CreateButtonRemover
import app.revanced.patches.layouts.MinimizedPlayback
import kotlin.reflect.KClass
/**
* Index contains all the patches and should be imported when using this library.
*/
@Suppress("Unused")
object Index {
/**
* Array of patches.
* New patches should be added to the array.
*/
val patches: Array<KClass<out Patch>> = arrayOf(
VideoAds::class,
MinimizedPlayback::class,
CreateButtonRemover::class
)
}