Make parcelize a non-experimental feature
It was already being added to the feature list by default, but was only enabled when isExperimental was true.
This commit is contained in:
committed by
Yan Zhulanow
parent
c40cc76ad3
commit
8e23555660
+1
-1
@@ -151,7 +151,7 @@ class AndroidComponentRegistrar : ComponentRegistrar {
|
||||
val features = configuration.get(AndroidConfigurationKeys.FEATURES) ?: AndroidExtensionsFeature.values().toSet()
|
||||
val isExperimental = configuration.get(AndroidConfigurationKeys.EXPERIMENTAL) == "true"
|
||||
|
||||
if (isExperimental && AndroidExtensionsFeature.PARCELIZE in features) {
|
||||
if (AndroidExtensionsFeature.PARCELIZE in features) {
|
||||
registerParcelExtensions(project)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user