Development Notes

June 26, 2017 ยท View on GitHub

Makefile

Makefiles are used to encapsulate the various tools in the toolchain:

make build      # builds Android library and examples
make publish    # increment versions and publish the artifact to bintray

NOTE: to publish, BINTRAY_USER and BINTRAY_API_KEY need to be set in the shell environment.

Directory structure

Makefile                    # Top-level Makefile to encapsulate tool-specifics
lightstep-tracer-android/   # Android instrumentation library
examples/                   # Sample code for Android

Formatting

The project uses the Google Java Style Guide as a formatting standard. Configurations for your IDE can be downloaded from github.com/google/styleguide.