After removing `apply plugin: 'kotlin-android-extensions'` I tried to add Kotlin parcelize plugin `a...
e
After removing
apply plugin: 'kotlin-android-extensions'
I tried to add Kotlin parcelize plugin
apply plugin: 'kotlin-parcelize'
but after adding parcelize plugin a got this error message
Copy code
Plugin [id: 'kotlin-parcelize'] was not found in any of the following sources:
Can someone explain why?
e
if you were using the Gradle Kotlin DSL, it could simply be
Copy code
plugins {
    kotlin("plugin.parcelize")
}
K 2
e
Thanks