
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@stridekick/react-native-google-fit
Advanced tools
A React Native bridge module for interacting with Google Fit
A React Native bridge module for interacting with Google Fit
Changelog:
0.2.0 - getDailyDistanceSamples();
- isAvailable();
- isEnabled();
- deleteWeight();
0.1.1-beta
- getDailyStepCountSamples method compatible with Apple Healthkit module
- started to implement JSDoc documentation
0.1.0
- getting activity within module itself
- fixed package name dependency
- provided more detailed documentation
0.0.9 - Weights Save Support
- Refactor methods to be compatible with react-native-apple-healthkit module
- Remove 'moment.js' dependency
0.0.8 - Weights Samples support
0.0.1 - 0.0.7 Initial builds
$ npm install react-native-google-fit --save
In order for your app to communicate properly with the Google Fitness API you need to enable Google Fit API in your Google API Console. Also you need to generate new client ID for your app and provide both debug and release SHA keys. Another step is to configure the consent screen, etc.
More detailed info available at https://developers.google.com/fit/android/get-api-key
$ react-native link react-native-google-fit
then pass your package name to the module in MainApplication.java (google fit requires package name to save data)
new GoogleFitPackage(BuildConfig.APPLICATION_ID)
android/app/src/main/java/[...]/MainApplication.javaimport com.reactnative.googlefit.GoogleFitPackage; to the imports at the top of the filenew GoogleFitPackage(BuildConfig.APPLICATION_ID), to the list returned by the getPackages() methodandroid/settings.gradle:
include ':react-native-google-fit'
project(':react-native-google-fit').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-google-fit/android')
android/app/build.gradle:
compile project(':react-native-google-fit')
import GoogleFit from 'react-native-google-fit';
Authorize:
GoogleFit.authorizeFit();
GoogleFit.onAuthorize((result) => {
//console.log(result);
dispatch('AUTH SUCCESS');
});
GoogleFit.getSteps(dayStart, dayEnd);
REDUX example
let retrieveDailySteps = () => {
return async (dispatch) => {
let todayStart = "2017-01-01T00:00:17.971Z"; //ISO Time String
let dayEnd = "2017-01-01T23:59:17.971Z"; //ISO Time String
await GoogleFit.getSteps(todayStart, dayEnd);
await GoogleFit.observeHistory((results) => {
if (results.length > 0) {
console.log(results[0].steps);
dispatch('SUCCESSFULLY GOT DAILY STEPS!');
}
});
}
}
let opt = {
unit: 'pound', // required; default 'kg'
startDate: "2017-01-01T00:00:17.971Z", // required
endDate: (new Date()).toISOString(), // required
ascending: false // optional; default false
};
GoogleFit.getWeightSamples(opt, (err,res) => {
console.log(res);
});
let opt = {
value: 200,
date: (new Date().toISOString()),
unit: "pound"
};
GoogleFit.saveWeight(opt, (err, res)=> {
if (err) throw 'Cant save data to the Google Fit';
});
observeSteps(callback); //On Step Changed Event
unsucscribeListeners(); //Put into componentWillUnmount() method to prevent leaks
getDailyDistanceSamples(options, callback); - method to get daily distance
isAvailable(callback); - Checks is GoogleFit available for current account / installed on device
isEnabled(callback); - Checks is permissions granted
deleteWeight(options, callback); - method to delete weights by options (same as in save weights)
Copyright (c) 2017-present, Stanislav Doskalenko doskalenko.s@gmail.com
Based on Asim Malik android source code, copyright (c) 2015, thanks mate!
FAQs
A React Native bridge module for interacting with Google Fit
The npm package @stridekick/react-native-google-fit receives a total of 16 weekly downloads. As such, @stridekick/react-native-google-fit popularity was classified as not popular.
We found that @stridekick/react-native-google-fit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.