View Single Post
Posts: 2 | Thanked: 1 time | Joined on Dec 2013
#1
I've been using Nokia Maps and GPSJinni for several years with no problems - after I quit the application GPS stopped working.
But I tried to install Mappero the other day and since then, even after I uninstalled Mappero and restored settings, GPS continues to work after I quit any application that starts it, even after I restart the device.

I see 2 processes when I do a"ps axf | grep locat" -

/usr/bin/location-proxy --no-detach
/usr/libexec/location-daemon

Disabling the GPS leaves the processes running, although the icon stops blinking. The only workaround I found was to make a script to kill location-daemon
kill -9 `ps -clx | grep 'location-daemon' | awk '{print $1}' | head -1`

BTW I type the "`" symbol but it does not appear (keyboard or on-screen keyboard) finally had to copy the script from the PC

Any idea how to roll back the settings so GPS exits gracefully?

Last edited by nasokay; 2013-12-21 at 08:28. Reason: typo