├── .gitignore ├── LICENSE ├── README.md ├── android ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── robinpowered │ └── react │ └── vitals │ ├── RNVitalsModule.java │ └── RNVitalsPackage.java ├── entry.android.js ├── entry.ios.js ├── index.js ├── ios ├── RNVitals.h ├── RNVitals.m ├── RNVitals.xcodeproj │ └── project.pbxproj ├── SSMemoryInfo.h └── SSMemoryInfo.m ├── package.json ├── react-native-vitals.podspec └── vitals.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinpowered/react-native-vitals/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinpowered/react-native-vitals/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinpowered/react-native-vitals/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinpowered/react-native-vitals/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinpowered/react-native-vitals/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/robinpowered/react/vitals/RNVitalsModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinpowered/react-native-vitals/HEAD/android/src/main/java/com/robinpowered/react/vitals/RNVitalsModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/robinpowered/react/vitals/RNVitalsPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinpowered/react-native-vitals/HEAD/android/src/main/java/com/robinpowered/react/vitals/RNVitalsPackage.java -------------------------------------------------------------------------------- /entry.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinpowered/react-native-vitals/HEAD/entry.android.js -------------------------------------------------------------------------------- /entry.ios.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | export {default} from './vitals'; 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | export {default} from './entry'; 4 | -------------------------------------------------------------------------------- /ios/RNVitals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinpowered/react-native-vitals/HEAD/ios/RNVitals.h -------------------------------------------------------------------------------- /ios/RNVitals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinpowered/react-native-vitals/HEAD/ios/RNVitals.m -------------------------------------------------------------------------------- /ios/RNVitals.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinpowered/react-native-vitals/HEAD/ios/RNVitals.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/SSMemoryInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinpowered/react-native-vitals/HEAD/ios/SSMemoryInfo.h -------------------------------------------------------------------------------- /ios/SSMemoryInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinpowered/react-native-vitals/HEAD/ios/SSMemoryInfo.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinpowered/react-native-vitals/HEAD/package.json -------------------------------------------------------------------------------- /react-native-vitals.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinpowered/react-native-vitals/HEAD/react-native-vitals.podspec -------------------------------------------------------------------------------- /vitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinpowered/react-native-vitals/HEAD/vitals.js --------------------------------------------------------------------------------