View Single Post
Posts: 299 | Thanked: 557 times | Joined on Aug 2012
#3920
Originally Posted by devian View Post
Well actually that's not the only way, I faced that problem with group chats, so what you can do instead of rebooting the phone, just open terminal, as normal user, type
Code:
top
this will give you the top processes running on the N9 (then do ctrl + c to get out of top), look for the one that says wazap (the column on the right) and get its PID (first column on left) then just kill the process using its PID, for example
Code:
kill 8716
now you can start wazapp normally
No need for doing complicated copy/paste stuff. Just type
Code:
kill `pidof wazapp`
and you're done.

NOTE: those aren't single quotes but backticks.

Last edited by brkn; 2012-09-06 at 10:26.