https://kotlinlang.org logo
Title
u

user

07/24/2022, 4:41 AM
No noarg super constructor for CLASS CLASS Kotlin 1.5.0 I have a error when trying to build my android app after bumping the kotlin version to 1.5.0. I am thinking its related to haveing a parcelized class and using the no-arg plugin. I have the following class import android.os.Parcelable import kotlinx.parcelize.Parcelize sealed class CDSAppbarProfile( val count: Int ) : Parcelable { @Parcelize class User( val origincount: Int, val imageUrl: String ) : Parcelable, CDSAppbarProfile(origincount)...