build-time-tracker-plugin


Source link: https://github.com/passy/build-time-tracker-plugin

How much time do you spend each day waiting for Gradle? Now you know!

Features

  • Sortable bar chart summaries
  • CSV output
  • Daily and total summary

Screenshot

Usage

Apply the plugin in your build.gradle:

buildscript {

repositories {

  mavenCentral()

}

 dependencies {

  classpath "net.rdrei.android.buildtimetracker:gradle-plugin:0.11.+"

}
 
}
  apply plugin: "build-time-tracker"  buildtimetracker {

reporters {

  csv {

 output "build/times.csv"

 append true

 header false
  
}

summary {

 ordered false

 threshold 50

 barstyle "unicode"
  
}

csvSummary {

 csv "build/times.csv"
  
}

}
 
}

Using the SNAPSHOT release:

buildscript {

repositories {

  maven {
 url "https://oss.sonatype.org/content/repositories/snapshots/" 
}

}

 dependencies {

  classpath "net.rdrei.android.buildtimetracker:gradle-plugin:0.12.0-SNAPSHOT"

}
 
}
 

Difference to --profile

You may wonder why you would want to use this plugin when gradle has a built-in build profiler. The quick version is, that if you just want to quickly check what it is that's slowing down your build, --profile will be all you need. However, if you want to continuously monitor your build and find bottlenecks that develop over time, this plugin may be the right fit for you. build-time-tracker writes a continuous log that is monoidal and can be collected from various different machines to run statistical analyses. Importantly, the written files contain identifying information about the machine the build happened on so you can compare apples with apples.

Reporters

CSVReporter

The csv reporter takes the following options:

  • output: CSV output file location relative to Gradle execution.
  • append: When set to true the CSV output file is not truncated. This is useful for collecting a series of build time profiles in a single CSV.
  • header: When set to false the CSV output does not include a prepended header row with column names. Is desirable in conjunction with append.

A basic R Markdown script, report.Rmd is included for ploting and analysing build times using CSV output.

CSVSummaryReporter

The csvSummary displays the accumulated total build time from a CSV file. The reporter takes the following option:

  • csv: Path (relative to the gradle file or absolute) to a CSV file created with the above reporter and the options append = true and header = false.

SummaryReporter

The summary reporter gives you an overview of your tasks at the end of the build. It has the following options:

  • threshold: (default: 50) Minimum time in milliseconds to display a task.
  • ordered: (default: false) Whether or not to sort the output in ascending order by time spent.
  • barstyle: (default: "unicode") Supports "unicode", "ascii" and "none" for displaying a bar chart of the relative times spent on each task.
  • successOutput: (default: "true") Redisplay build success or failure message so you don't miss it if the summary output is long.
  • shortenTaskNames: (default: "true") Shortens long tasks names.

Note This plugin only measures the task times that constitute a build. Specifically, it does not measure the time in configuration at the start of a Gradle run. This means that the time to execute a build with very fast tasks is not accurately represented in output because it is dominated by the time in configuration instead.

Developing

This project is built and tested by Travis at passy/build-time-tracker-plugin.

Acknowledgements

Thanks to Sindre Sorhus for contributing the wonderful logo!

License

Copyright 2014 Pascal Hartig  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at
  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

Quote it is a social platform for sharing quotes and wise sayings. It is great to share and spread the wisdom and thought full.

Are you tired of searching images for your Android app and copying each image file into its own drawable folder? I had the same problem and each icon I have copied I thought that I am wasting my time. Especially when Google published their big "Material Design Icon" pack. Nearly 70,000 icons in too many folders. So I thought that I need a tool which reads all icons of a folder and give me the chance to copy them easily into my project drawable folder. And here it is :-)

This tiny library lets you easily send Android Intents to the main Evernote app.

A simple rest API client library.

Some common classes for use in your android projects.

A library to display videos in a TextureView using a custom MediaPlayer controller.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes