cordova-plugin-accountkit icon indicating copy to clipboard operation
cordova-plugin-accountkit copied to clipboard

Dont execute getAccount on IOS

Open davidgalarza opened this issue 8 years ago • 0 comments
trafficstars

Hello i have the following code: (<any>window).AccountKitPlugin.getAccount(user=>{ console.log('Usuario 1: ', user); this.userId = user.accountId; this.db.getUser(user.accountId).on('value', ss=>{ console.log("Usuario 2:", ss.val()); this.phone = ss.val().phone; this.addressF = ss.val().billing.address; this.ci = ss.val().billing.ci; this.name = ss.val().billing.name; }) }, (err)=>{ console.log(err); }); It works fine in andoid but dont execute on ios

davidgalarza avatar Oct 09 '17 23:10 davidgalarza