Kotlin doesn't have raw types, so `ProxyList` by i...
# getting-started
d
Kotlin doesn't have raw types, so
ProxyList
by itself is not a type. You need to provide some type argument -- in this case you could use
Parcelable.Creator<ProxyList<*>>