mirror of
https://github.com/inotia00/revanced-patches.git
synced 2025-05-25 03:12:10 +02:00
15 lines
358 B
Kotlin
15 lines
358 B
Kotlin
package app.revanced.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
|
|
|