mirror of
https://github.com/inotia00/revanced-patches.git
synced 2025-05-13 12:57:16 +02:00
11 lines
346 B
Kotlin
11 lines
346 B
Kotlin
package app.revanced.patches.shared.annotation
|
|
|
|
import app.revanced.patcher.annotation.Compatibility
|
|
import app.revanced.patcher.annotation.Package
|
|
|
|
@Compatibility([Package("com.google.android.youtube", arrayOf("18.05.40"))])
|
|
@Target(AnnotationTarget.CLASS)
|
|
@Retention(AnnotationRetention.RUNTIME)
|
|
internal annotation class YouTubeCompatibility
|
|
|