This message was deleted.
# android
s
This message was deleted.
j
Hey @Xavier Ducrohet I am thinking about why
minSdk
is not a
Property<Int>
, is there any reason? I though that with the refactor it would become
Property<Int>
but I was surprised when it was still
Int
x
minSdk
values can impact the task graph and therefore must be read at configuration time. Because of this it cannot be dynamic using
Property
. This is also why it's read/write in
beforeVariant
and read-only in
onVariant
(because once you get to
onVariant
we need the task graph to be finalized)
👍 1