├── .gitignore ├── DeviceUUID.ios.js ├── LICENSE ├── RCTDeviceUUID.h ├── RCTDeviceUUID.m ├── RCTDeviceUUID.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── README.md └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywei/react-native-device-uuid/HEAD/.gitignore -------------------------------------------------------------------------------- /DeviceUUID.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywei/react-native-device-uuid/HEAD/DeviceUUID.ios.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywei/react-native-device-uuid/HEAD/LICENSE -------------------------------------------------------------------------------- /RCTDeviceUUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywei/react-native-device-uuid/HEAD/RCTDeviceUUID.h -------------------------------------------------------------------------------- /RCTDeviceUUID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywei/react-native-device-uuid/HEAD/RCTDeviceUUID.m -------------------------------------------------------------------------------- /RCTDeviceUUID.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywei/react-native-device-uuid/HEAD/RCTDeviceUUID.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RCTDeviceUUID.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywei/react-native-device-uuid/HEAD/RCTDeviceUUID.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywei/react-native-device-uuid/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywei/react-native-device-uuid/HEAD/package.json --------------------------------------------------------------------------------