Please help. I can restart the AsyncTask. App crashes every time, when second call to updatePoi().
Here is my code:
I\'m checking status of task and set
You can't restart a task. Each task object may only be executed once:
The task can be executed only once (an exception will be thrown if a second execution is attempted.)
So create a new object each time you execute it, don't use the same object.