Anybody having experience with this Proguard warni...
# android
t
Anybody having experience with this Proguard warning?
Copy code
Warning: my.package.data.model.Link: can't find referenced class kotlin.internal.annotations.AvoidUninitializedObjectCopyingCheck
Warning: my.package.data.model.Link$Creator: can't find referenced class kotlin.internal.annotations.AvoidUninitializedObjectCopyingCheck
Warning: my.package.ui.widget.Configuration: can't find referenced class kotlin.internal.annotations.AvoidUninitializedObjectCopyingCheck
Warning: my.package.ui.widget.Configuration$Creator: can't find referenced class kotlin.internal.annotations.AvoidUninitializedObjectCopyingCheck
(I don't have these annotation btw not on my classpath) I use the experimental
@Parcelize
annotation to make my data models implement
Parcelable
All my other models seem to work except for these. I tried excluding it with:
Copy code
# Kotlin
-keep @kotlin.internal.annotations.AvoidUninitializedObjectCopyingCheck public class *
but to no avail. Could not find any information on Google Except for this commit 7days ago on the Kotlin repo: https://github.com/JetBrains/kotlin/commit/5acc992956c31354a4e791f036cf79f487756a0b