Does anyone know where can I find the official doc...
# android
a
Does anyone know where can I find the official documentation for the Android Kotlin extensions? I'm trying to enable
@Parcelize
support, but when I look it up at Google I see a bunch of medium articles, and the link that leads to kotlinlang.org pointing to this link [1], which doesn't have a mention for it. Even Jake Wharton's tweet[2] mentioning that it became stable redirects to [1]. {1] https://kotlinlang.org/docs/reference/android-overview.html [2] https://twitter.com/JakeWharton/status/1116424059162644480
r
Youll be wanting https://kotlinlang.org/docs/reference/compiler-plugins.html#parcelable-implementations-generator , bare in mind there are some issues with the implementation, for example it currently doesn't work well with AIDL - but there is a fix in the works
a
Thanks!! That did it, weird that Google didn't show this page in results, probably hasn't been indexed or I was searching with wrong terms.
b