├── .editorconfig ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .npmignore ├── RCTHealthKit.xcodeproj └── project.pbxproj ├── RCTHealthKit ├── RCTHealthKit.h └── RCTHealthKit.m ├── RCTHealthKitTests └── Info.plist ├── README.md ├── examples └── RCTHealthKitExample │ ├── .flowconfig │ ├── .gitignore │ ├── .npmignore │ ├── iOS │ ├── RCTHealthKitExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── RCTHealthKitExample.xcscheme │ ├── RCTHealthKitExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── RCTHealthKitExample.entitlements │ │ ├── main.jsbundle │ │ └── main.m │ └── RCTHealthKitExampleTests │ │ ├── Info.plist │ │ └── RCTHealthKitExampleTests.m │ ├── index.ios.js │ ├── package.json │ └── src │ └── components │ ├── Characteristics.js │ ├── Empty.js │ ├── Index.js │ └── StaticList.js ├── index.js └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/.npmignore -------------------------------------------------------------------------------- /RCTHealthKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/RCTHealthKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RCTHealthKit/RCTHealthKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/RCTHealthKit/RCTHealthKit.h -------------------------------------------------------------------------------- /RCTHealthKit/RCTHealthKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/RCTHealthKit/RCTHealthKit.m -------------------------------------------------------------------------------- /RCTHealthKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/RCTHealthKitTests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/README.md -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/.flowconfig -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/.gitignore -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/.npmignore -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/iOS/RCTHealthKitExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/iOS/RCTHealthKitExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/iOS/RCTHealthKitExample.xcodeproj/xcshareddata/xcschemes/RCTHealthKitExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/iOS/RCTHealthKitExample.xcodeproj/xcshareddata/xcschemes/RCTHealthKitExample.xcscheme -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/iOS/RCTHealthKitExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/iOS/RCTHealthKitExample/AppDelegate.h -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/iOS/RCTHealthKitExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/iOS/RCTHealthKitExample/AppDelegate.m -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/iOS/RCTHealthKitExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/iOS/RCTHealthKitExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/iOS/RCTHealthKitExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/iOS/RCTHealthKitExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/iOS/RCTHealthKitExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/iOS/RCTHealthKitExample/Info.plist -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/iOS/RCTHealthKitExample/RCTHealthKitExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/iOS/RCTHealthKitExample/RCTHealthKitExample.entitlements -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/iOS/RCTHealthKitExample/main.jsbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/iOS/RCTHealthKitExample/main.jsbundle -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/iOS/RCTHealthKitExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/iOS/RCTHealthKitExample/main.m -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/iOS/RCTHealthKitExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/iOS/RCTHealthKitExampleTests/Info.plist -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/iOS/RCTHealthKitExampleTests/RCTHealthKitExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/iOS/RCTHealthKitExampleTests/RCTHealthKitExampleTests.m -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/index.ios.js -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/package.json -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/src/components/Characteristics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/src/components/Characteristics.js -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/src/components/Empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/src/components/Empty.js -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/src/components/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/src/components/Index.js -------------------------------------------------------------------------------- /examples/RCTHealthKitExample/src/components/StaticList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/examples/RCTHealthKitExample/src/components/StaticList.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-healthkit/HEAD/package.json --------------------------------------------------------------------------------