mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2026-01-18 00:43:56 +00:00
15 lines
377 B
Kotlin
15 lines
377 B
Kotlin
package app.revanced.patcher.usage.bytecode
|
|
|
|
import app.revanced.patcher.annotation.Compatibility
|
|
import app.revanced.patcher.annotation.Package
|
|
|
|
@Compatibility(
|
|
[Package(
|
|
"com.example.examplePackage", arrayOf("0.0.1", "0.0.2")
|
|
)]
|
|
)
|
|
@Target(AnnotationTarget.CLASS)
|
|
@Retention(AnnotationRetention.RUNTIME)
|
|
internal annotation class ExampleBytecodeCompatibility
|
|
|