acando86
04/12/2019, 9:12 PMkotlinx.coroutines 1.2.0
:
Warning: kotlinx.atomicfu.AtomicFU: can't find referenced method 'void setInterceptor(kotlinx.atomicfu.AtomicOperationInterceptor)' in program class kotlinx.atomicfu.InterceptorKt
Proguard is configured as per kotlinx-coroutines-core/resources/META-INF/proguard/coroutines.pro
. I can easily solve this warning by adding a rule to keep the corresponding atomicfu class and its methods, but i was wondering whether it's safe to -dontwarn
it. I have no warnings when using v1.1.1. Anyone experiencing a similar issue?Jemshit Iskenderov
04/18/2019, 1:26 PM-dontwarn kotlinx.atomicfu.**
, not sure if it breaks somethingacando86
04/18/2019, 7:50 PM-keep
but obviously i would like to avoid to poison the proguard configuration file with unnecessary keep rules