Javi
01/07/2023, 3:37 PMinternal inline fun <reified T> Project.property(noinline block: Project.() -> T): Property<T> =
objects.property<T>().convention(project.provider { block(this) })
But I am getting a crash
inline fun property(): compile avoidance is not supported with public inline functions
This is only happening with Gradle TestKit. Testing it in included builds doesn't crash.
Is there any workaround?