alejo8591 / unipiloto-am-2

Repositorio Oficial para el Diplomado en Desarrollo de Aplicaciones Móviles (AM-2)
MIT License
11 stars 5 forks source link

Firefoxos - Inconveniente con el plugin de geolocalizacion: org.apache.cordova.geolocation #21

Closed desaextremo closed 9 years ago

desaextremo commented 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" }
    }
}
fannytg commented 9 years ago

Gracias por el aporte

olmandocs commented 9 years ago

buen aporte muchas gracias

alejo8591 commented 9 years ago

@desaextremo Muchas gracias muy buen aporte.