Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 784 Bytes

File metadata and controls

23 lines (15 loc) · 784 Bytes

Development Notes

Makefile

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

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

NOTE: to publish, SONATYPE_USERNAME and SONATYPE_PASSWORD need to be set in the shell environment.

Directory structure

Makefile                    # Top-level Makefile to encapsulate tool-specifics
common/                     # Shared source code for JRE and 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.