You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
RNDeviceSpecs detects the specifications of the device it is running on. Requiring or importing the module will give you an object with properties that describe the user's device.
Add it to your project
Install
npm install react-native-device-specs --save
iOS
Open your project in XCode, right click onLibraries, clickAdd files to (Your Project Name), and selectRNDeviceSpecs.xcodeproj
AddlibRNDeviceSpecs.a toBuild Phases -->Link Binary With Libraries
Android
Inandroid/settings.gradlebelowinclude ':app'add:
...include ':react-native-device-specs'project(':react-native-device-specs').projectDir = new File(settingsDir, '../node_modules/react-native-device-specs')
Useimport specs from 'react-native-device-specs' orvar specs = require('react-native-device-specs') in your project!
Properties
platform: The platform code.
storageSize: The quoted storage size (GB) given by Apple (Ex: 32, 64, 128)
diskSpace: The actual size of the disk.
carrier: The carrier of device or'No Carrier' for Simulators or Devices without a carrier.
Contributing
Feel free to submit a pull request with feature suggestions or device updates. Please maintain a consistent syntax for new devices (See lib/iosModels.js for examples)