Accessing hidden method Ljava/security/spec/ECPara...
# squarelibraries
g
Accessing hidden method Ljava/security/spec/ECParameterSpec;->setCurveName(Ljava/lang/String;)V (greylist, reflection, allowed) 160929.013 W java.lang.ClassCastException: java.lang.Class cannot be cast to java.lang.reflect.ParameterizedType 160929.014 W at retrofit2.HttpServiceMethod.parseAnnotations(SourceFile:46) 160929.014 W at retrofit2.ServiceMethod.parseAnnotations(SourceFile:39) 160929.014 W at retrofit2.Retrofit.loadServiceMethod(SourceFile:202) 160929.014 W at retrofit2.Retrofit$1.invoke(SourceFile:160) 160929.014 W at java.lang.reflect.Proxy.invoke(Proxy.java:1006) 160929.014 W at $Proxy6.generateAnonymousAuthTokenAsyn(Unknown Source)
😶 2
z
Has nothing to do with kotlin
d
@Gaurav Tyagi not sure if this helps you, but I had an issue with the release version of my app which uses Minify: https://developer.android.com/studio/build/shrink-code
Especially look at the section with proguard-rules.pro
g
it fixed after adding below line.
Copy code
-keep class kotlin.coroutines.Continuation
✍️ 1
d
Great to hear!
g
thanks all