I want to use the features of kotlin @Parcelize,
I have apply the plugin: 'kotlin-android-extensions'
on gradle, and I added
androidExtensions {
experimental = true
}
but errors continue to appear.this error message :
Error:(28, 0) Could not find method androidExtensions() for arguments [build_8di01fmxa4d18k9q0yy3fdd20$_run_closure2@27f46852] on project ':app' of type org.gradle.api.Project.
<a href="openFile:F:\BELAJAR\ANDROID\AndroidStudioProjects\KADE\app\build.gradle">Open File</a>
'kotlin-android-extensions'
as mentioned by @SML, i.e. You no longer need followingapply plugin: 'org.jetbrains.kotlin.android.extensions'
– Subir