We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
currently, sample code in README are all groovy code, can we add some new sample code in Kotlin ?
README
groovy
Kotlin
The text was updated successfully, but these errors were encountered:
Here's a sample using the Kotlin DSL:
plugins { id("net.rdrei.android.buildtimetracker") version "0.11.0" } // ... buildtimetracker { reporters { register("csv") { options["output"] = "build/times.csv" options["append"] = "true" options["header"] = "false" } register("summary") { options["ordered"] = "false" options["threshold"] = "50" options["barstyle"] = "unicode" } register("csvSummary") { options["csv"] = "build/times.csv" } } }
Sorry, something went wrong.
kts .kts .kt //adding for appearing is search results
No branches or pull requests
currently, sample code in
README
are allgroovy
code,can we add some new sample code in
Kotlin
?The text was updated successfully, but these errors were encountered: