How to use react-native-google-fit - 4 common examples

To help you get started, we’ve selected a few react-native-google-fit examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github yldio / react-native-wearables / data.android.js View on Github external
return new Promise((resolve, reject) => {
      GoogleFit.onAuthorize(() => {
        resolve()
      });

      GoogleFit.onAuthorizeFailure(error => {
        reject(new Error(ERRORS.failedInit))
      });

      GoogleFit.authorize();
    })
  },
github yldio / react-native-wearables / data.android.js View on Github external
import GoogleFit from 'react-native-google-fit';
import {DATA_TYPES, ERRORS} from './constants'

const funcMappings = {
  [DATA_TYPES.heartRateBpm]: GoogleFit.getHeartRateSamples
}

const Data = {
  Types: DATA_TYPES,

  authorize() {
    return new Promise((resolve, reject) => {
      GoogleFit.onAuthorize(() => {
        resolve()
      });

      GoogleFit.onAuthorizeFailure(error => {
        reject(new Error(ERRORS.failedInit))
      });

      GoogleFit.authorize();
github yldio / react-native-wearables / data.android.js View on Github external
return new Promise((resolve, reject) => {
      GoogleFit.onAuthorize(() => {
        resolve()
      });

      GoogleFit.onAuthorizeFailure(error => {
        reject(new Error(ERRORS.failedInit))
      });

      GoogleFit.authorize();
    })
  },
github yldio / react-native-wearables / data.android.js View on Github external
return new Promise((resolve, reject) => {
      GoogleFit.onAuthorize(() => {
        resolve()
      });

      GoogleFit.onAuthorizeFailure(error => {
        reject(new Error(ERRORS.failedInit))
      });

      GoogleFit.authorize();
    })
  },

react-native-google-fit

A React Native bridge module for interacting with Google Fit

MIT
Latest version published 5 months ago

Package Health Score

79 / 100
Full package analysis