Hey I am facing one situation : I am trying to `Pa...
# android
t
Hey I am facing one situation : I am trying to
Parcelize
a class It contains one parameter :
var tokenType: Any? = null
Compiler complains at compile time that :
Type is not directoly supported by Parcelize. Annotate the parater with @RawValue if you want it to be serialized via writeValue()
Though the error is self explainatory but when i add @RawValue it gives an error :
This annotation is not applicable to target value parameter
Any hints on this?