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.
If available in Hex, the package can be installed as:
- Add
google_fit
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:google_fit, "~> 0.2.0"}]
end
```
- Ensure
google_fit
is started before your application:
```elixir
def application do
[applications: [:google_fit]]
end
```