epam / CoroutinesCache

In mobile development exists solution for caching with RxJava usage, but there is no solutions for Kotlin Coroutines. The project is to provide this functionality to mobile community.
Apache License 2.0
162 stars 7 forks source link

Annotations couldn't be retrieved #12

Closed LikeAnyan closed 5 years ago

LikeAnyan commented 5 years ago

There are issue with annotations. Currently they are retrieved in runtime via reflection but all of them annotated as @Retention(AnnotationRetention.SOURCE) that means that they will not be stored in binary output and couldn't be accessed. Seems like retention value should be changed to AnnotationRetention.RUNTIME

LikeAnyan commented 5 years ago

closed by https://github.com/epam/CoroutinesCache/pull/13