Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why do I get ‘does not implement abstract member’ warning while using kotlinx.android.parcel.Parcelize?

I am getting this error while trying to read the bundle from another fragment where I am sending the NewVehicle object.

Error : Class 'NewVehicle' is not abstract and does not implement abstract member public abstract fun describeContents(): Int defined in android.os.Parcelable

NewVehicle.kt

import android.os.Parcelable
import com.google.gson.annotations.SerializedName
import kotlinx.android.parcel.Parcelize

@Parcelize
data class NewVehicle(
    @SerializedName("av_se")
    val avSe: String,
    .....
    @SerializedName("vh_ob")
    val vhOb: String,
    @SerializedName("zo_in")
    val zoIn: String
):Parcelable{}
like image 964
Sweta Jain Avatar asked May 09 '26 06:05

Sweta Jain


2 Answers

In my case I forgot to add apply plugin: 'kotlin-parcelize' in gradle

like image 96
Sergey Avatar answered May 11 '26 18:05

Sergey


In my case just apply these plugins in this order:

Make sure that you call kotlin-parcelize first then kotlin-kapt

plugins {
    id 'kotlin-parcelize'
    id 'kotlin-kapt'    
}
like image 40
Marawan Mamdouh Avatar answered May 11 '26 19:05

Marawan Mamdouh



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!