Ruby on Rails & Android
[Android] Timeout executing service
Annoying, right ?
When I was binding my Activity to a Service with a ServiceConnection, I did this, and always got this error:
bindService(new Intent(this, PlayerService.class), this.psc, Context.BIND_AUTO_CREATE); |
To resolve that, I asked for more debug :
bindService(new Intent(this, PlayerService.class), this.psc, Context.BIND_DEBUG_UNBIND); |
Then this error disappeared !
Seriously, what happened ? I have no idea, but I’m happy my application doesn’t crash anymore after the user just closed it…
| Print article | This entry was posted by Alexandre Gherschon on May 24, 2010 at 2:05 PM, and is filed under Android, Languages. Follow any responses to this post through RSS 2.0. You can leave a response or trackback from your own site. |
