Hi all, I have recently upgraded my android projec...
# announcements
a
Hi all, I have recently upgraded my android project kotlin version from 1.3.71 to 1.4. It compiles fine, but am finding some runtime type inference issues? I have some functions which accepts a generic type and internally uses it for base64 decode and cast the byte array to passed in inferred generic type. When I invoke the function, the type is not defined explicitly but gets inferred based on calling function's return type. This works fine in 1.3.71, but from 1.4 onwards, the generic type is captured as java Void in runtime.