Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 638 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 638 Bytes

Advanced Location

An android class that helps you compute advanced data for GPS Location (average speed, distance, elapsed time, positive ascent).

Licensed under MIT License

Current version: 0.1

## Build Instructions:
./gradlew build

To include in an android project

In your project's settings.gradle file add...

project(':advancedlocation-library').projectDir = new File('submodules/AdvancedLocation/advancedlocation-library')  

Then add the library as dependency in your build.gradle

dependencies {
  compile project(':advancedlocation-library')
}