Slackbot
05/23/2022, 9:54 PMephemient
05/23/2022, 9:56 PMnull
type ambiguity outside of gradle,
objects.property<String?>().convention(null as String?)
Javi
05/23/2022, 10:15 PMJavi
05/23/2022, 10:17 PMCannot query the value of task ':someTask' property 'prop' because it has no value available.
ephemient
05/23/2022, 10:17 PMgetOrNull()
instead of get()
, or to add an @Optional
annotationephemient
05/23/2022, 10:18 PMconvention(null)
except to override something else')Javi
05/23/2022, 10:19 PMJavi
05/23/2022, 10:22 PMgetOrNull
, I have to put it manually and it existsJavi
05/23/2022, 10:22 PMorNull
, which is not appropriated tbh