GoogleFit Build Status

This Library wraps GoogleFit API. With user's consent it allows to read data about sport activities, weight & nutrition, sleep and more. You can see usage examples here.

Installation

If available in Hex, the package can be installed as:

  1. Add google_fit to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:google_fit, "~> 0.2.0"}]
end
```
  1. Ensure google_fit is started before your application:
```elixir
def application do
  [applications: [:google_fit]]
end
```