React-redux: Get deviceid and device info without npm

808 Views Asked by At

Can I get device-id and device-info without this react-native-device-info in react-native; like we get location info in device.

1

There are 1 best solutions below

0
On

You can get device info by using the RN 'Platform' package. You can't get device ID though, you would need to bridge API to Javascript as a Native Module.

Example for getting device info (exkl. device ID):

import { Platform } from 'react-native';

_getOS() {
  return Platform.OS 
}

_getOSVersion() {
  return Platform.Version
}