I faced to one problem on android 4.0.3 (on 4.1.2 it works fine). I have in my Activity BroadcastReceiver. When I send a broadcast, method onReceive() called always twice. P
I was calling sendBroadcast(intent) multiple times in my Service class
sendBroadcast(intent)
Removing one of them fixed the problem.