mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2026-01-17 16:33:56 +00:00
14 lines
337 B
Kotlin
14 lines
337 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)
|
|
internal annotation class ExampleBytecodeCompatibility
|
|
|