You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Vladimir Kotikov (JIRA)" <ji...@apache.org> on 2016/10/07 10:17:21 UTC

[jira] [Closed] (CB-11433) Permission dialog display cordova package path instead of plain text message

     [ https://issues.apache.org/jira/browse/CB-11433?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vladimir Kotikov closed CB-11433.
---------------------------------
    Resolution: Not A Bug

> Permission dialog display cordova package path instead of plain text message
> ----------------------------------------------------------------------------
>
>                 Key: CB-11433
>                 URL: https://issues.apache.org/jira/browse/CB-11433
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: Plugin Geolocation
>    Affects Versions: 2.2.0
>         Environment: ios 9.3.x
>            Reporter: Philipp Kursawe
>              Labels: triaged, wfc
>
> When having this react component
> {code}
> import React from "react"
> import { connect } from "react-redux"
> import { update } from "../geolocationActions"
> class GeoLocation extends React.Component {
>   constructor(props) {
>     super(props)
>     this.updatePosition = position => props.update(position)
>     this.onError = () => props.update(null)
>   }
>   componentWillMount() {
>     this.watchId = navigator.geolocation.watchPosition(this.updatePosition, this.onError)
>   }
>   componentWillUnmount() {
>     navigator.geolocation.clearWatch(this.watchId)
>   }
>   render() {
>     return null
>   }
> }
> GeoLocation.propTypes = {
>   update: React.PropTypes.func.isRequired,
> }
> export default connect(null, { update })(GeoLocation)
> {code}
> Sometimes the phone displays the correct permission question:
> https://1drv.ms/i/s!AjrwWLsSkwcs1YlgMrdeK9AvkCwe7g
> but sometimes (even right after the first dialog) another dialog is displayed and the app hangs after it has been closed.
> https://1drv.ms/i/s!AjrwWLsSkwcs1YlfkCT9F6OKUK9iRQ



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org