Helle there,
my title says all.
I have created a blank app and added the device plugin.
constructor(private platform: Platform, public navCtrl: NavController, public device: Device)
{
this.platform.ready().then((readySource) => {
console.log(this.device.uuid);
});
}
After the installation, the uuid returns null, if i quit the app and open again, i asked fpr permissions to access the phone.
After grand the permission, the uuid returns correctly.
Steps:
- Install app
- Open app first time
- No permission request
- uuid = null
- quit app
- reopen app
- permission request opened
- uuid not null
Does anybody know this?