What is GradleVersion.current().buildTime?

Hi all,

I was trying to find out what actually this means:

GradleVersion.current().buildTime

Is this the Gradle’s build time stamp or something else ?

Help is appreciated !!

GradleVersion is an internal API, but GradleVersion.current().buildTime returns the time Gradle’s CI built the version of Gradle you’re using:

Thank you @sterling . Appreciate your help