how to get device id in react native. I am using create react native not android studio. I am new to this.
import DeviceInfo from 'react-native-device-info';
constructor(props) {
super(props);
this.state = { id: '' }
this.onNavigateTo = this.onNavigateTo.bind(this);
}
componentDidMount() {
this.setState({id: DeviceInfo.getUniqueID()}, () =>
alert(this.state.id));
}
render() {
return (
<Text>{this.state.id}</Text>
);
}
Error: undefined is not an object (evaluating 'RNDevice.uniqueId')
Note:- I am not using run-android or run-ios
I am using Create-react-native app and yarn start. The output will be on device through Expo app
Instead of expo you can create a project using react-native CLI.
Create a new project using command :
react-native init Myproject
cd Myproject
Run the project using the following command :
react-native run-android
Then you can use react-native-device-info package.
I tried with following versions and it worked for me.
"react": "16.0.0",
"react-native": "0.50.4",
"react-native-device-info": "^0.12.1",
I installed it with command :
npm install --save react-native-device-info
Then I link it with command :
react-native link react-native-device-info
If you are facing any issue while linking the package then you can do the manual link or you can cross check the packages is successfully link or not.
dependencies { ... compile "com.facebook.react:react-native:+" // From node_modules + compile project(':react-native-device-info') }
...
include ':app'
include ':react-native-device-info'
project(':react-native-device-info').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-device-info/android')
+ 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() ); } ...... }
Permissions
Add the appropriate, optional permissions to your AndroidManifest.xml:
...
<uses-permission android:name="android.permission.BLUETOOTH"/> <!-- for Device Name -->
<uses-permission android:name="android.permission.READ_PHONE_STATE"/> <!-- for Phone Number -->
Example
var DeviceInfo = require('react-native-device-info');
// or import DeviceInfo from 'react-native-device-info';
var deviceId = DeviceInfo.getUniqueID();
you can use above deviceId.