mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2024-11-10 01:02:22 +01:00
fix: remove default param from Package.versions
Kotlin compiler bug produces invalid bytecode, resulting in an IncompleteAnnotationException at runtime.
This commit is contained in:
parent
44f6a3ebc5
commit
4b81318710
1 changed files with 2 additions and 2 deletions
|
@ -24,5 +24,5 @@ annotation class Compatibility(
|
|||
@MustBeDocumented
|
||||
annotation class Package(
|
||||
val name: String,
|
||||
val versions: Array<String> = [],
|
||||
)
|
||||
val versions: Array<String>,
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue