Not able to retrieve Device Info
// "react-native-device-info": "^1.6.1",
import DeviceInfo from 'react-native-device-info';
export default class SignUp extends Component {
constructor(props) {
super(props);
this.state = {
email : '',
fullName: '',
password: '',
mobileNo: '',
deviceId: '',
}
}
async componentWillMount(){
try{
var id = DeviceInfo.getUniqueID();
this.setState({ deviceId: id, });
}
catch(e){
console.log('Trouble getting device info ', e);
}
}