You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using this plugin indirect through @nativescript/geolocation plugin at version ^9.0.0
It was working fine until i cleaned the app and re-build it.
Then the method geolocation.isEnabled() stopped giving true as result even if I have given every single location permission.
Diggin inside the plugging I found the cause for this in the following code:
Hello all,
I am using this plugin indirect through @nativescript/geolocation plugin at version ^9.0.0
It was working fine until i cleaned the app and re-build it.
Then the method
geolocation.isEnabled()
stopped giving true as result even if I have given every single location permission.Diggin inside the plugging I found the cause for this in the following code:
The problem is that both results of
permission.check()
were a single string "authorized" and not an array as supposed to.I found that after the rebuilding of my app (through package-lock.json) that "@nativescript-community/perms" had gone from 2.3.3 to 2.3.5
When manually added the plugin to my app back to 2.3.3 the result was back to the expected
[status:Status, always:boolean]
Thanks,
Harry
The text was updated successfully, but these errors were encountered: