Hi. Ihave a small SDK which is using Kotlin reflec...
# random
k
Hi. Ihave a small SDK which is using Kotlin reflection and its working fine with native integrations for release builds with minification enabled. One of the react native customer is having issue with the class when they make a release build.
Copy code
java.lang.IllegalAccessException: Class java.lang.Class<vi.f$f> 
cannot access private final  field java.lang.String
That is a data class and there is not field called explicitly. Its called this this
val person = Person()
Their react native version is 0.71.6. But then i built react native app with my SDK integration and it worked fine with release build and proguard. My react native version is 0.74.0. Can anyone help in this regard