Skip to content

Instantly share code, notes, and snippets.

@vorobeij
Last active July 27, 2018 09:45
Show Gist options
  • Select an option

  • Save vorobeij/146063629dc7c764fa154e5380492758 to your computer and use it in GitHub Desktop.

Select an option

Save vorobeij/146063629dc7c764fa154e5380492758 to your computer and use it in GitHub Desktop.
android time measure
val timings = TimingLogger("YOUR_TAG", "methodA")
// ... do some work A ...
timings.addSplit("work A")
// ... do some work B ...
timings.addSplit("work B")
// ... do some work C ...
timings.addSplit("work C")
timings.dumpToLog()
// adb shell setprop log.tag.YOUR_TAG VERBOSE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment