My Project has few classes that extends Parcelable. Do I need to 'keep' them in proguard rules while obfuscating.
What is the general practice for parcelables?
My Project has few classes that extends Parcelable. Do I need to 'keep' them in proguard rules while obfuscating.
What is the general practice for parcelables?
If you are using Kotlin @Parcelize with proguard you can add this to proguard-rules.pro:
-keep @kotlinx.android.parcel.Parcelize public class *