What is react-native-device-info?
The react-native-device-info package provides device information and system details for React Native applications. It allows developers to access a wide range of device-specific information, such as device ID, system version, and more.
What are react-native-device-info's main functionalities?
Get Device ID
This feature allows you to retrieve the unique device ID of the device running the application.
import DeviceInfo from 'react-native-device-info';
const deviceId = DeviceInfo.getDeviceId();
console.log(deviceId);
Get System Version
This feature allows you to get the operating system version of the device.
import DeviceInfo from 'react-native-device-info';
const systemVersion = DeviceInfo.getSystemVersion();
console.log(systemVersion);
Get Application Version
This feature allows you to retrieve the version of the application currently running on the device.
import DeviceInfo from 'react-native-device-info';
const appVersion = DeviceInfo.getVersion();
console.log(appVersion);
Get Battery Level
This feature allows you to get the current battery level of the device.
import DeviceInfo from 'react-native-device-info';
DeviceInfo.getBatteryLevel().then(batteryLevel => {
console.log(batteryLevel);
});
Get Device Name
This feature allows you to retrieve the name of the device.
import DeviceInfo from 'react-native-device-info';
DeviceInfo.getDeviceName().then(deviceName => {
console.log(deviceName);
});
Other packages similar to react-native-device-info
react-native-device
The react-native-device package offers basic device information like device ID and system version. It is simpler and may not provide as extensive information as react-native-device-info.
react-native-battery
The react-native-battery package focuses specifically on battery-related information, such as battery level and charging status. It is more specialized compared to the broader scope of react-native-device-info.
react-native-device-info
Device Information for react-native
Installation
First you need to install react-native-device-info:
npm install react-native-device-info --save
Installation (iOS)
In XCode, in the project navigator, right click Libraries ➜ Add Files to [your project's name] Go to node_modules ➜ react-native-device-info and add the .xcodeproj file
In XCode, in the project navigator, select your project. Add the lib*.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.
Run your project (Cmd+R)
(Thanks to @brysgo for writing the instructions)
Installation (Android)
- In
android/setting.gradle
...
include ':RNDeviceInfo', ':app'
project(':RNDeviceInfo').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-device-info/android')
- In
android/app/build.gradle
...
dependencies {
...
compile project(':RNDeviceInfo')
}
- register module (in MainActivity.java)
import com.learnium.RNDeviceInfo.*;
public class MainActivity extends Activity implements DefaultHardwareBackBtnHandler {
......
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mReactRootView = new ReactRootView(this);
mReactInstanceManager = ReactInstanceManager.builder()
.setApplication(getApplication())
.setBundleAssetName("index.android.bundle")
.setJSMainModuleName("index.android")
.addPackage(new MainReactPackage())
.addPackage(new RNDeviceInfo())
.setUseDeveloperSupport(BuildConfig.DEBUG)
.setInitialLifecycleState(LifecycleState.RESUMED)
.build();
mReactRootView.startReactApplication(mReactInstanceManager, "ExampleRN", null);
setContentView(mReactRootView);
}
......
}
(Thanks to @chirag04 for writing the instructions)
Release Notes
0.5.0 adds a new parameter; Device Id. On iOS this is the hardware string for the current device (e.g.
"iPhone7,2"). On Android we use the BOARD field which is the name of the underlying board, e.g. "goldfish".
The way that the module gets the device model on iOS has also changed to be based on the Device Id; now
instead of getting a generic product family e.g. "iPhone", it will return the specific model e.g. "iPhone 6".
Example
var DeviceInfo = require('react-native-device-info');
console.log("Device Unique ID", DeviceInfo.getUniqueID());
console.log("Device Manufacturer", DeviceInfo.getManufacturer());
console.log("Device Model", DeviceInfo.getModel());
console.log("Device ID", DeviceInfo.getDeviceId());
console.log("Device Name", DeviceInfo.getSystemName());
console.log("Device 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());