├── .actrc ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ ├── .secrets.example │ ├── README.md │ ├── create-release-branch.yml │ ├── publish-npm.yml │ └── release-published.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── .yarn └── releases │ └── yarn-4.10.3.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── reactnative │ └── googlefit │ ├── ActivityHistory.java │ ├── BodyHistory.java │ ├── CalorieHistory.java │ ├── DeleteDataHelper.java │ ├── DistanceHistory.java │ ├── GoogleFitManager.java │ ├── GoogleFitModule.java │ ├── GoogleFitPackage.java │ ├── HealthHistory.java │ ├── HelperUtil.java │ ├── HydrationHistory.java │ ├── NutritionHistory.java │ ├── RecordingApi.java │ ├── SaveDataHelper.java │ ├── SleepHistory.java │ ├── StepCounter.java │ ├── StepHistory.java │ └── StepSensor.java ├── app.plugin.js ├── docs ├── API_REFERENCE.md ├── FAQ.md ├── INSTALLATION.md └── development │ └── testing-github-actions-workflow.md ├── index.android.d.ts ├── index.android.js ├── package.json ├── react-native.config.js ├── src ├── scopes.js └── utils.js └── yarn.lock /.actrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/.actrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/.secrets.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/.github/workflows/.secrets.example -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/create-release-branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/.github/workflows/create-release-branch.yml -------------------------------------------------------------------------------- /.github/workflows/publish-npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/.github/workflows/publish-npm.yml -------------------------------------------------------------------------------- /.github/workflows/release-published.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/.github/workflows/release-published.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.md 2 | android/src/** -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.10.3.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/.yarn/releases/yarn-4.10.3.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/reactnative/googlefit/ActivityHistory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/java/com/reactnative/googlefit/ActivityHistory.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnative/googlefit/BodyHistory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/java/com/reactnative/googlefit/BodyHistory.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnative/googlefit/CalorieHistory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/java/com/reactnative/googlefit/CalorieHistory.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnative/googlefit/DeleteDataHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/java/com/reactnative/googlefit/DeleteDataHelper.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnative/googlefit/DistanceHistory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/java/com/reactnative/googlefit/DistanceHistory.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnative/googlefit/GoogleFitManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/java/com/reactnative/googlefit/GoogleFitManager.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnative/googlefit/GoogleFitModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/java/com/reactnative/googlefit/GoogleFitModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnative/googlefit/GoogleFitPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/java/com/reactnative/googlefit/GoogleFitPackage.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnative/googlefit/HealthHistory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/java/com/reactnative/googlefit/HealthHistory.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnative/googlefit/HelperUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/java/com/reactnative/googlefit/HelperUtil.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnative/googlefit/HydrationHistory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/java/com/reactnative/googlefit/HydrationHistory.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnative/googlefit/NutritionHistory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/java/com/reactnative/googlefit/NutritionHistory.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnative/googlefit/RecordingApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/java/com/reactnative/googlefit/RecordingApi.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnative/googlefit/SaveDataHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/java/com/reactnative/googlefit/SaveDataHelper.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnative/googlefit/SleepHistory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/java/com/reactnative/googlefit/SleepHistory.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnative/googlefit/StepCounter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/java/com/reactnative/googlefit/StepCounter.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnative/googlefit/StepHistory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/java/com/reactnative/googlefit/StepHistory.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnative/googlefit/StepSensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/android/src/main/java/com/reactnative/googlefit/StepSensor.java -------------------------------------------------------------------------------- /app.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/app.plugin.js -------------------------------------------------------------------------------- /docs/API_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/docs/API_REFERENCE.md -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/docs/INSTALLATION.md -------------------------------------------------------------------------------- /docs/development/testing-github-actions-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/docs/development/testing-github-actions-workflow.md -------------------------------------------------------------------------------- /index.android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/index.android.d.ts -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/index.android.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/react-native.config.js -------------------------------------------------------------------------------- /src/scopes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/src/scopes.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/src/utils.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StasDoskalenko/react-native-google-fit/HEAD/yarn.lock --------------------------------------------------------------------------------