kotlin使用@Parcelize报错
Class ‘XXXData’ is not abstract and does not implement abstract member public abstract fun describeContents(): Int defined in android.os.Parcelable
解决办法
app/build.gradle 添加 id ‘kotlin-android-extensions’
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-android-extensions'
}