Anybody usining `@Parcelize` got rid of this lint ...
# android
a
Anybody usining
@Parcelize
got rid of this lint error?
a
You might need to set this:
experimental = true
Copy code
androidExtensions {
    experimental= true 
    features = ["parcelize"]
}
👍 1
e
Apply the Kotlin Android Extensions plugin
a
@Amirul Zin didn’t stable finally land in 1.3.40?
@Eton Otieno it’s applied, it compiles, it runs fine on the device, it’s just a lint error
a
@arekolek I thought so as well. So I just created a simple project using the latest plugin etc without that experimental flag. Its only after I flipped that on, do a rebuild, and then the Lint error went away.
a
Weird that it runs just fine though 🤔
g
Fixed in Android Studio 3.5 for me
👍 2
also this warning is not related on experimental status, it’s just a bug of tooling
o
The issue is fixed in upcoming Kotlin 1.3.60 https://youtrack.jetbrains.com/issue/KT-32096
👍 1
👏 2
a
In case anybody missed it like me,
@Parcelize
finally should work (since November when 1.3.60 was launched)
👍 1