`Hi! Anyone have workaround with parametrized Annotation in kotlin?
Here is the problem:
When you use annotations from dependencies they all goes throw Java Proxy with AnnotationInvocationHandler.
In Java you don't have problem, cause you call annotationInstance.value(), but in Kotlin it converts into annotationInstance.value, so Proxy does not have that field, and Proxy:invokeHandler:invoke() is not called.
Any ideas (except processing annotations with Java)?