![]()
This error usually happens because you are trying to run a dialog operation in a thread or registering Location Listeners again inside a thread or async task.
In order to fix, just add this line before the call.
Looper.myLooper().prepare();
… Read the rest