Closed desaextremo closed 9 years ago
En la plataforma FirefoxOs se presenta un error al intentar hacer uso del plugin de geolocalización:
org.apache.cordova.geolocation
Por primera vez
Geolocalization Error#1 User denied geolocation prompt El inconveniente se soluciona modificando el archivo manifest.webapp con las lineas:
"permissions": { "geolocation": { "description": "Used to position the map to your current position" } }
El archivo modificado quedaría así
{ "launch_path": "/index.html", "installs_allowed_from": [ "*" ], "version": "0.0.1", "name": "geo", "description": "A sample Apache Cordova application that responds to the deviceready event.", "developer": { "name": "Apache Cordova Team", "url": "http://cordova.io" }, "icons": {}, "permissions": { "geolocation": { "description": "Used to position the map to your current position" } } }
Gracias por el aporte
buen aporte muchas gracias
@desaextremo Muchas gracias muy buen aporte.
En la plataforma FirefoxOs se presenta un error al intentar hacer uso del plugin de geolocalización:
org.apache.cordova.geolocation
Por primera vez
Geolocalization Error#1 User denied geolocation prompt El inconveniente se soluciona modificando el archivo manifest.webapp con las lineas:
El archivo modificado quedaría así