react-native-device-info
![npm version](https://badge.fury.io/js/react-native-device-info@2x.png)
Install
npm install --save rc-react-native-device-info
Automatically link
With React Native 0.27+
react-native link rc-react-native-device-info
With older versions of React Native
You need rnpm
(npm install -g rnpm
)
rnpm link rc-react-native-device-info
Manually link
iOS (via Cocoa Pods)
Add the following line to your build targets in your Podfile
pod 'RNDeviceInfo', :path => '../node_modules/rc-react-native-device-info'
Then run pod install
iOS (without Cocoa Pods)
In XCode, in the project navigator:
- Right click Libraries
- Add Files to [your project's name]
- Go to
node_modules/rc-react-native-device-info
- Add the
.xcodeproj
file
In XCode, in the project navigator, select your project.
- Add the
libRNDeviceInfo.a
from the deviceinfo project to your project's Build Phases ➜ Link Binary With Libraries - Click
.xcodeproj
file you added before in the project navigator and go the Build Settings tab. Make sure All is toggled on (instead of Basic). - Look for Header Search Paths and make sure it contains both
$(SRCROOT)/../react-native/React
and $(SRCROOT)/../../React
- Mark both as recursive (should be OK by default).
Run your project (Cmd+R)
(Thanks to @brysgo for writing the instructions)
Android
With React Native 0.29+
+ import com.learnium.RNDeviceInfo.RNDeviceInfo;
public class MainApplication extends Application implements ReactApplication {
//......
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
+ new RNDeviceInfo(),
new MainReactPackage()
);
}
......
}
With older versions of React Native:
+ import com.learnium.RNDeviceInfo.RNDeviceInfo;
public class MainActivity extends ReactActivity {
......
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
+ new RNDeviceInfo(),
new MainReactPackage()
);
}
}
(Thanks to @chirag04 for writing the instructions)
Device Name
If you want to get the device name in Android add this to your AndroidManifest.xml
(optional):
...
<uses-permission android:name="android.permission.BLUETOOTH"/>
Release Notes
See CHANGELOG.md
Example
var DeviceInfo = require('react-native-device-info');
console.log("Device Unique ID", DeviceInfo.getUniqueID());
console.log("Device Manufacturer", DeviceInfo.getManufacturer());
console.log("Device Brand", DeviceInfo.getBrand());
console.log("Device Model", DeviceInfo.getModel());
console.log("Device ID", DeviceInfo.getDeviceId());
console.log("System Name", DeviceInfo.getSystemName());
console.log("System Version", DeviceInfo.getSystemVersion());
console.log("Bundle ID", DeviceInfo.getBundleId());
console.log("Build Number", DeviceInfo.getBuildNumber());
console.log("App Version", DeviceInfo.getVersion());
console.log("App Version (Readable)", DeviceInfo.getReadableVersion());
console.log("Device Name", DeviceInfo.getDeviceName());
console.log("User Agent", DeviceInfo.getUserAgent());
console.log("Device Locale", DeviceInfo.getDeviceLocale());
console.log("Device Country", DeviceInfo.getDeviceCountry());
console.log("App Instance ID", DeviceInfo.getInstanceID());