Hello! is it possible to use `kotlin-android-exten...
# android
d
Hello! is it possible to use
kotlin-android-extensions
for
@Parcelize
but not for views?
d
yes
d
cool
but the docs do not mention how
d
you will get both when applying the plugin, but that does not mean you have to use it
(or maybe I misunderstood the question)
d
I would like to impede using the one for views
at least for now
d
as long as you're not importing your layout/views in your code, I would say it will have no impact
d
the idea would be to have an unified solution, for instance, ViewBindings https://proandroiddev.com/new-in-android-viewbindings-the-difference-from-databinding-library-bef5945baf5e
s
Like this:
Copy code
androidExtensions {
    experimental = true
    features = ["parcelize"]
    defaultCacheImplementation = "NONE"
}
🎉 2
d
thanks!