alarm manager wakelock battery drain help! - Desire HD Q&A, Help & Troubleshooting

so I just installed BetterBatteryStats and under wakelock the culprit is alarm manager. I don't have any alarms on but it keeps turning on how to turn this thing off? thanks
will hit thanks for any helpful answers

Connect your phone to a computer and run this:
Code:
adb shell dumpsys alarm > AlarmDump.txt
or download GScript lite and create the following script:
Code:
cd /sdcard
dumpsys alarm > AlarmDump.txt
Note that you probably need root access for the GScript to work. The AlarmDump.txt file will be on your sdcard root directory.

Try installing startup cleaner 2 or similar to stop it starting at boot. Or uninstall it
Sent from my Desire HD using XDA Premium App

It is not really advisable to uninstall AlarmManager since it is used by a lot of applications and by android itself. Not sure you even can uninstall it.
ANywas, getting that dump file I mentioned above will show you what app was causing the most wakeups, and then you can take actions from there.

O sorry i didnt realize you meant alarm manager was a system app.
You can uninstall it using root but not a good idea.
I have not heard of this causing battery drain though.
Sent from my Desire HD using XDA Premium App

It can cause drain, but its not the AlarmManager in it self that is causing it, its the other apps that use it. Other apps use it to wake up on specific times or intervals, like if you have a weather widget that needs updating every 30 min or an application that checks your location every x min etc. Here are parts of my own AlarmManager dump and you might get the idea what I mean:
Code:
Alarm Stats:
com.google.android.gsf
20993ms running, 75 wakeups
4 alarms: act=com.google.android.intent.action.GTALK_RECONNECT flg=0x4
42 alarms: flg=0x4
29 alarms: act=com.google.android.intent.action.GTALK_HEARTBEAT flg=0x4
se.f1nally.snowstorm
547ms running, 11 wakeups
11 alarms: act=se.f1nally.yrvader.UPDATE_ALL flg=0x4 cmp=se.f1nally.snowstorm/.UpdateService
com.mobitobi.android.gentlealarm
2128ms running, 11 wakeups
11 alarms: act=com.mobitobi.android.gentlealarm.ALARM_ALERT flg=0x4
com.jb.gosms
45ms running, 1 wakeups
1 alarms: act=com.jb.schedule.private.box flg=0x4
com.blizzard.bma
2061402ms running, 0 wakeups
2611 alarms: act=android.appwidget.action.APPWIDGET_UPDATE flg=0x4
android
809072ms running, 281 wakeups
1 alarms: act=android.intent.action.DATE_CHANGED flg=0x20000004
9 alarms: act=com.android.internal.policy.impl.PhoneWindowManager.DELAYED_KEYGUARD flg=0x4
1138 alarms: act=android.intent.action.TIME_TICK flg=0x40000004
123 alarms: act=com.android.server.ThrottleManager.action.POLL flg=0x4
19 alarms: act=android.app.backup.intent.RUN flg=0x40000004
80 alarms: act=android.appwidget.action.APPWIDGET_UPDATE flg=0x4
173 alarms: act=android.content.syncmanager.SYNC_ALARM flg=0x4
com.liato.bankdroid
443ms running, 6 wakeups
6 alarms: flg=0x4 cmp=com.liato.bankdroid/.appwidget.AutoRefreshService
com.google.android.apps.maps
804ms running, 43 wakeups
43 alarms: flg=0x4 cmp=com.google.android.apps.maps/com.google.googlenav.prefetch.android.PrefetcherService
com.viber.voip
164775ms running, 618 wakeups
617 alarms: act=com.viber.voip.action.KEEP_ALIVE_RECEIVE flg=0x4
1 alarms: act=com.viber.voip.action.VERSION_CHECK flg=0x4
net.dinglisch.android.tasker
14114ms running, 104 wakeups
90 alarms: act=net.dinglisch.android.tasker.ANOFFCHECKORUM flg=0x4
14 alarms: act=net.dinglisch.android.tasker.ALARUM flg=0x4
de.devmil.minimaltext
6619ms running, 0 wakeups
64 alarms: act=updatetasker dat=minimaltextwidget://widget/id/updatetasker flg=0x4 cmp=de.devmil.minimaltext/.MinimalTextUpdateService
249 alarms: act=update dat=minimaltextwidget://widget/id/update flg=0x4 cmp=de.devmil.minimaltext/.MinimalTextUpdateService
59 alarms: act=forceupdate dat=minimaltextwidget://widget/id/forceupdate flg=0x4 cmp=de.devmil.minimaltext/.MinimalTextUpdateService
3 alarms: act= dat=minimaltextwidget:/weather/ flg=0x4 cmp=de.devmil.minimaltext/.weather.WeatherUpdateService
3 alarms: act=ForceUpdate dat=minimaltextwidget:/weather/ForceUpdate flg=0x4 cmp=de.devmil.minimaltext/.weather.WeatherUpdateService
org.koxx.pure_calendar
29ms running, 5 wakeups
5 alarms: act=org.koxx.pure_calendar.UPDATE_ALL flg=0x4 cmp=org.koxx.pure_calendar/.UpdateService
com.bigtincan.android.adfree
11231ms running, 1 wakeups
1 alarms: flg=0x4
It is part of the android os so thats why I dont think you can uninstall it. See this page for dev info on AlarmManager.

Ghazkul said:
Connect your phone to a computer and run this:
Code:
adb shell dumpsys alarm > AlarmDump.txt
or download GScript lite and create the following script:
Code:
cd /sdcard
dumpsys alarm > AlarmDump.txt
Note that you probably need root access for the GScript to work. The AlarmDump.txt file will be on your sdcard root directory.
Click to expand...
Click to collapse
where can i find the AlarmDump.txt on my computer?

kyo_udon said:
where can i find the AlarmDump.txt on my computer?
Click to expand...
Click to collapse
It will be in the root of your SDcard

Ghazkul said:
It can cause drain, but its not the AlarmManager in it self that is causing it, its the other apps that use it. Other apps use it to wake up on specific times or intervals, like if you have a weather widget that needs updating every 30 min or an application that checks your location every x min etc. Here are parts of my own AlarmManager dump and you might get the idea what I mean:
Code:
Alarm Stats:
com.google.android.gsf
20993ms running, 75 wakeups
4 alarms: act=com.google.android.intent.action.GTALK_RECONNECT flg=0x4
42 alarms: flg=0x4
29 alarms: act=com.google.android.intent.action.GTALK_HEARTBEAT flg=0x4
se.f1nally.snowstorm
547ms running, 11 wakeups
11 alarms: act=se.f1nally.yrvader.UPDATE_ALL flg=0x4 cmp=se.f1nally.snowstorm/.UpdateService
com.mobitobi.android.gentlealarm
2128ms running, 11 wakeups
11 alarms: act=com.mobitobi.android.gentlealarm.ALARM_ALERT flg=0x4
com.jb.gosms
45ms running, 1 wakeups
1 alarms: act=com.jb.schedule.private.box flg=0x4
com.blizzard.bma
2061402ms running, 0 wakeups
2611 alarms: act=android.appwidget.action.APPWIDGET_UPDATE flg=0x4
android
809072ms running, 281 wakeups
1 alarms: act=android.intent.action.DATE_CHANGED flg=0x20000004
9 alarms: act=com.android.internal.policy.impl.PhoneWindowManager.DELAYED_KEYGUARD flg=0x4
1138 alarms: act=android.intent.action.TIME_TICK flg=0x40000004
123 alarms: act=com.android.server.ThrottleManager.action.POLL flg=0x4
19 alarms: act=android.app.backup.intent.RUN flg=0x40000004
80 alarms: act=android.appwidget.action.APPWIDGET_UPDATE flg=0x4
173 alarms: act=android.content.syncmanager.SYNC_ALARM flg=0x4
com.liato.bankdroid
443ms running, 6 wakeups
6 alarms: flg=0x4 cmp=com.liato.bankdroid/.appwidget.AutoRefreshService
com.google.android.apps.maps
804ms running, 43 wakeups
43 alarms: flg=0x4 cmp=com.google.android.apps.maps/com.google.googlenav.prefetch.android.PrefetcherService
com.viber.voip
164775ms running, 618 wakeups
617 alarms: act=com.viber.voip.action.KEEP_ALIVE_RECEIVE flg=0x4
1 alarms: act=com.viber.voip.action.VERSION_CHECK flg=0x4
net.dinglisch.android.tasker
14114ms running, 104 wakeups
90 alarms: act=net.dinglisch.android.tasker.ANOFFCHECKORUM flg=0x4
14 alarms: act=net.dinglisch.android.tasker.ALARUM flg=0x4
de.devmil.minimaltext
6619ms running, 0 wakeups
64 alarms: act=updatetasker dat=minimaltextwidget://widget/id/updatetasker flg=0x4 cmp=de.devmil.minimaltext/.MinimalTextUpdateService
249 alarms: act=update dat=minimaltextwidget://widget/id/update flg=0x4 cmp=de.devmil.minimaltext/.MinimalTextUpdateService
59 alarms: act=forceupdate dat=minimaltextwidget://widget/id/forceupdate flg=0x4 cmp=de.devmil.minimaltext/.MinimalTextUpdateService
3 alarms: act= dat=minimaltextwidget:/weather/ flg=0x4 cmp=de.devmil.minimaltext/.weather.WeatherUpdateService
3 alarms: act=ForceUpdate dat=minimaltextwidget:/weather/ForceUpdate flg=0x4 cmp=de.devmil.minimaltext/.weather.WeatherUpdateService
org.koxx.pure_calendar
29ms running, 5 wakeups
5 alarms: act=org.koxx.pure_calendar.UPDATE_ALL flg=0x4 cmp=org.koxx.pure_calendar/.UpdateService
com.bigtincan.android.adfree
11231ms running, 1 wakeups
1 alarms: flg=0x4
It is part of the android os so thats why I dont think you can uninstall it. See this page for dev info on AlarmManager.
Click to expand...
Click to collapse
I have/had the same problem with that service, but after i read your post, i remembered that my Facebook, G+ and RSS feed is set to update every hour. Solution? Update manually from now on

My AlarmDump. How to interpret?
I was hoping someone can take a look at this dump and help me interpret? My battery life sucks and AlarmManager was the highest at 1 hr 1 min of partial wakelocks as reported by Better Battery Stats.
Not sure I am reading this log right, but I'm guessing we want the lower the # of wake locks the better, but the total running time for those # of wakeups is probably more important I am assuming. So "com.amazon.venezia" with 410ms running and 24 wakeups is probably using LESS battery than the "com.xfinity.tv" with 498ms running and 1 wakeups. Does that sound about right?
My dump is here since it was too big for this url:
justpaste.it/alarmdumptxt

Can you give me help in interpreting this? Just point which parts are of importance and why, maybe give a hint of how do reduce the load by Alarm.
This might be an example for others too.
Code:
Current Alarm Manager state:
Realtime wakeup (now=2012-03-26 10:13:59):
RTC_WAKEUP #17: Alarm{4095c618 type 0 com.google.android.gsf}
type=0 when=+4d3h27m53s60ms repeatInterval=596271000 count=0
operation=PendingIntent{4097f250: PendingIntentRecord{40904180 com.google.android.gsf broadcastIntent}}
RTC_WAKEUP #16: Alarm{4090c788 type 0 com.google.android.gsf}
type=0 when=+4d3h27m53s60ms repeatInterval=596271000 count=0
operation=PendingIntent{4092eed8: PendingIntentRecord{4094c838 com.google.android.gsf broadcastIntent}}
RTC_WAKEUP #15: Alarm{40a44320 type 0 com.google.android.gsf}
type=0 when=+4d3h27m53s60ms repeatInterval=596271000 count=0
operation=PendingIntent{40a33410: PendingIntentRecord{40a31cb8 com.google.android.gsf broadcastIntent}}
RTC_WAKEUP #14: Alarm{4092df20 type 0 com.google.android.gsf}
type=0 when=+4d3h27m53s60ms repeatInterval=596271000 count=0
operation=PendingIntent{4058e368: PendingIntentRecord{40574b10 com.google.android.gsf broadcastIntent}}
RTC_WAKEUP #13: Alarm{40a05f90 type 0 com.google.android.gsf}
type=0 when=+4d3h27m53s60ms repeatInterval=596271000 count=0
operation=PendingIntent{409bc5e8: PendingIntentRecord{40a05f18 com.google.android.gsf broadcastIntent}}
RTC_WAKEUP #12: Alarm{407b7f68 type 0 com.google.android.gsf}
type=0 when=+4d3h27m53s60ms repeatInterval=596271000 count=0
operation=PendingIntent{4095e550: PendingIntentRecord{40a2ecc8 com.google.android.gsf broadcastIntent}}
RTC_WAKEUP #11: Alarm{4092a308 type 0 com.google.android.gsf}
type=0 when=+4d3h27m53s60ms repeatInterval=596271000 count=0
operation=PendingIntent{405ab6a0: PendingIntentRecord{4094a640 com.google.android.gsf broadcastIntent}}
RTC_WAKEUP #10: Alarm{4098bae0 type 0 com.google.android.gsf}
type=0 when=+4d3h27m53s60ms repeatInterval=596271000 count=0
operation=PendingIntent{40928c30: PendingIntentRecord{40b34878 com.google.android.gsf broadcastIntent}}
RTC_WAKEUP #9: Alarm{40b2a8c0 type 0 com.google.android.gsf}
type=0 when=+4d3h27m53s60ms repeatInterval=596271000 count=0
operation=PendingIntent{40a03590: PendingIntentRecord{40a589f8 com.google.android.gsf broadcastIntent}}
RTC_WAKEUP #8: Alarm{40a32220 type 0 com.google.android.gsf}
type=0 when=+4d3h27m53s60ms repeatInterval=596271000 count=0
operation=PendingIntent{407ca930: PendingIntentRecord{40a321a8 com.google.android.gsf broadcastIntent}}
RTC_WAKEUP #7: Alarm{409a1c20 type 0 com.google.android.gsf}
type=0 when=+4d3h27m53s60ms repeatInterval=596271000 count=0
operation=PendingIntent{40aa09b0: PendingIntentRecord{40acd310 com.google.android.gsf broadcastIntent}}
RTC_WAKEUP #6: Alarm{40bc03c0 type 0 com.google.android.gsf}
type=0 when=+4d3h27m53s60ms repeatInterval=596271000 count=0
operation=PendingIntent{409f6e20: PendingIntentRecord{40bc0348 com.google.android.gsf broadcastIntent}}
RTC_WAKEUP #5: Alarm{4099a7d0 type 0 com.google.android.gsf}
type=0 when=+4d3h27m53s60ms repeatInterval=596271000 count=0
operation=PendingIntent{405bce00: PendingIntentRecord{40b842f0 com.google.android.gsf broadcastIntent}}
RTC_WAKEUP #4: Alarm{409a56f0 type 0 com.android.vending}
type=0 when=+12h5m50s99ms repeatInterval=0 count=0
operation=PendingIntent{4086d2d8: PendingIntentRecord{40bf6218 com.android.vending startService}}
RTC_WAKEUP #3: Alarm{40be64b8 type 0 com.android.providers.calendar}
type=0 when=+59m18s164ms repeatInterval=0 count=0
operation=PendingIntent{409c06f8: PendingIntentRecord{40be6440 com.android.providers.calendar broadcastIntent}}
RTC_WAKEUP #2: Alarm{4097c0a8 type 0 com.carl.tcpro}
type=0 when=+56m43s378ms repeatInterval=0 count=0
operation=PendingIntent{409829a0: PendingIntentRecord{40931070 com.carl.tcpro broadcastIntent}}
RTC_WAKEUP #1: Alarm{40a1a148 type 0 com.google.android.gsf}
type=0 when=+12m39s711ms repeatInterval=1800000 count=0
operation=PendingIntent{40862d48: PendingIntentRecord{409270e0 com.google.android.gsf broadcastIntent}}
RTC_WAKEUP #0: Alarm{40adda38 type 0 ccc71.bmw.pro}
type=0 when=+51s501ms repeatInterval=60000 count=1
operation=PendingIntent{4096db50: PendingIntentRecord{408dc0c0 ccc71.bmw.pro broadcastIntent}}
RTC #1: Alarm{40a18a10 type 1 android}
type=1 when=+1h46m0s382ms repeatInterval=0 count=0
operation=PendingIntent{407a5be8: PendingIntentRecord{4082f728 android broadcastIntent}}
RTC #0: Alarm{40868118 type 1 android}
type=1 when=+382ms repeatInterval=0 count=0
operation=PendingIntent{407cc4a8: PendingIntentRecord{40794130 android broadcastIntent}}
Elapsed realtime wakeup (now=+1d19h4m25s877ms):
ELAPSED_WAKEUP #8: Alarm{409b9610 type 2 android}
type=2 when=+4d19h7m48s886ms repeatInterval=0 count=0
operation=PendingIntent{4082ea00: PendingIntentRecord{4084f700 android broadcastIntent}}
ELAPSED_WAKEUP #7: Alarm{4088fe08 type 2 android}
type=2 when=+26m6s381ms repeatInterval=1800000 count=1
operation=PendingIntent{40861368: PendingIntentRecord{4088fd90 android broadcastIntent}}
ELAPSED_WAKEUP #6: Alarm{409b3a38 type 2 tv.dailyme.android}
type=2 when=+14m45s126ms repeatInterval=0 count=0
operation=PendingIntent{4098c660: PendingIntentRecord{40a1a7d0 tv.dailyme.android startService}}
ELAPSED_WAKEUP #5: Alarm{405c45a0 type 2 com.google.android.apps.maps}
type=2 when=+11m6s381ms repeatInterval=900000 count=0
operation=PendingIntent{409f7738: PendingIntentRecord{40a37f48 com.google.android.apps.maps startService}}
ELAPSED_WAKEUP #4: Alarm{409b6658 type 2 com.google.android.gsf}
type=2 when=+10m53s906ms repeatInterval=0 count=0
operation=PendingIntent{405d77e0: PendingIntentRecord{409b65e0 com.google.android.gsf broadcastIntent}}
ELAPSED_WAKEUP #3: Alarm{408e0b58 type 2 de.avm.android.laborapp}
type=2 when=+6m56s119ms repeatInterval=0 count=0
operation=PendingIntent{4099b3f0: PendingIntentRecord{4094a1e8 de.avm.android.laborapp broadcastIntent}}
ELAPSED_WAKEUP #2: Alarm{40a21b68 type 2 getjar.android.client}
type=2 when=+6m23s400ms repeatInterval=600000 count=1
operation=PendingIntent{408b0638: PendingIntentRecord{40a21af0 getjar.android.client startService}}
ELAPSED_WAKEUP #1: Alarm{40b02f38 type 2 org.forcas.netstat}
type=2 when=+45s45ms repeatInterval=120000 count=1
operation=PendingIntent{40ac23b8: PendingIntentRecord{40a2bc38 org.forcas.netstat broadcastIntent}}
ELAPSED_WAKEUP #0: Alarm{40a12ab0 type 2 de.avm.android.laborapp}
type=2 when=+41s449ms repeatInterval=0 count=0
operation=PendingIntent{40797118: PendingIntentRecord{40bba158 de.avm.android.laborapp broadcastIntent}}
ELAPSED #3: Alarm{40a7a2c0 type 3 android}
type=3 when=+30d13h45m57s978ms repeatInterval=0 count=0
operation=PendingIntent{40829828: PendingIntentRecord{4086bd30 android broadcastIntent}}
ELAPSED #2: Alarm{40a5f600 type 3 com.ebomike.ebobirthday}
type=3 when=+58m44s416ms repeatInterval=0 count=0
operation=PendingIntent{409620a8: PendingIntentRecord{40a3cd20 com.ebomike.ebobirthday startService}}
ELAPSED #1: Alarm{40bde040 type 3 android}
type=3 when=+6m48s126ms repeatInterval=0 count=0
operation=PendingIntent{4088ee20: PendingIntentRecord{4086bc58 android broadcastIntent}}
ELAPSED #0: Alarm{409ee130 type 3 ccc71.pmw.pro}
type=3 when=+964ms repeatInterval=10000 count=1
operation=PendingIntent{40be7bc0: PendingIntentRecord{40705900 ccc71.pmw.pro broadcastIntent}}
Broadcast ref count: 0
Alarm Stats:
ccc71.pmw.pro
66820ms running, 0 wakeups
1427 alarms: flg=0x4
ccc71.bmw.pro
68780ms running, 2586 wakeups
2586 alarms: flg=0x4
android
193673ms running, 99 wakeups
1 alarms: act=android.intent.action.DATE_CHANGED flg=0x20000004
2544 alarms: act=android.intent.action.TIME_TICK flg=0x40000004
256 alarms: act=com.android.server.ThrottleManager.action.POLL flg=0x4
86 alarms: act=android.appwidget.action.APPWIDGET_UPDATE flg=0x4
1 alarms: act=android.content.syncmanager.SYNC_ALARM flg=0x4
1 alarms: act=com.android.server.ThorottleManager.action.RESET flg=0x4
12 alarms: act=com.android.internal.policy.impl.KeyguardViewMediator.DELAYED_KEYGUARD flg=0x4
de.avm.android.laborapp
1380ms running, 67 wakeups
67 alarms: flg=0x4
com.google.android.apps.maps
989ms running, 85 wakeups
85 alarms: flg=0x4 cmp=com.google.android.apps.maps/com.google.googlenav.prefetch.android.PrefetcherService
tv.dailyme.android
581ms running, 44 wakeups
44 alarms: flg=0x4 cmp=tv.dailyme.android/.util.download.DownloadService
org.forcas.netstat
52392ms running, 1302 wakeups
1302 alarms: flg=0x4
getjar.android.client
2801ms running, 259 wakeups
259 alarms: flg=0x4 cmp=getjar.android.client/.global.DoStatReceiver
com.google.android.gsf
7929ms running, 171 wakeups
86 alarms: flg=0x4
8 alarms: act=com.google.android.intent.action.GTALK_RECONNECT flg=0x4
77 alarms: act=com.google.android.intent.action.GTALK_HEARTBEAT flg=0x4
com.android.vending
119ms running, 12 wakeups
3 alarms: flg=0x4 cmp=com.android.vending/com.google.android.finsky.services.DailyHygiene
9 alarms: flg=0x4 cmp=com.android.vending/com.google.android.finsky.services.ContentSyncService
com.ebomike.ebobirthday
765ms running, 0 wakeups
1 alarms: dat=custom://144190064 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://93733139 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://32458777 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://18057403 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://46870974 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://3652773 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://10856123 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://140590043 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://21657426 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://72078163 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://90129065 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://75678207 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://68478103 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://100934060 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://79279000 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://126164095 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://97334034 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://136964376 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://50472017 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://86529016 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://133364133 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://39659122 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://147790087 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://64876017 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://28858526 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://129764113 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://151390113 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://122564081 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://104534229 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://61275992 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://108134289 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://82886009 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://14456146 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://115363961 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://118964053 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://52208 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://43259213 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://36059036 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://54072054 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://25257674 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://111735023 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://57672097 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
1 alarms: dat=custom://7256099 flg=0x4 cmp=com.ebomike.ebobirthday/.EboBirthdayService
com.android.providers.calendar
451ms running, 1 wakeups
1 alarms: act=com.android.providers.calendar.SCHEDULE_ALARM flg=0x4
com.carl.tcpro
15596ms running, 44 wakeups
44 alarms: act=com.carl.tcpro.UPDATE_RUN flg=0x4
com.lsdroid.cerberus
11ms running, 1 wakeups
1 alarms: act=com.google.android.c2dm.intent.REGISTER flg=0x4
From my little knowledge I would assume the first part is not important, but the Alarm Stats, and there this with most running time as "com.carl.tcpro" at the very end. But what I can do with this?
BTW: In this overnight test, most time the phone was in flight mode.
Thanks

I'm in the same boat of trying to interpret mine, so I'm not an expert...
IMO, the most important part is the "Time Running", and nothing looks too bad in yours. Since everything is in ms, even that com.carl.tcpro only ran for 15 seconds.
Does anyone know how to reset the Alarm Manager log? Mine seems to be covering like 54 days.
Also, a breakdown of what some of the most important definitions are:
"RTC_WAKEUP"
"type"
RTC #X
ELAPSED_WAKEUP #X
ELAPSED #X
etc...
Thanks!

android.intent.action.TIME_TICK
what is that? in the above posted it showed 1,000 alarms
its that not high on mine, but pretty high
exactly what is android.intent.action.TIME_TICK ?

just for everybody knowledge.
i've recently solved this problem on my sg2 aswell.
but for me the only thing that helped was flashing an old bootloader.
i was on the new ics bootloader until somehow i saw on my system info that my bootloader is unknown. i've also couldnt get the jig working, so i thought why not try to flash the old bootloader.
and yes!!!! finally the alarmManager is no longer on the toplist of BBS's partial wakelocks. and the phone is finally entering deepsleep mode whenever i turnoff the screen.

Hey,
I also have problems with the alarmmanager. A month ago my phones battery was 65% after 3 days, today I'm lucky if I have enough battery left to do a phone call at the end of a day. The last few days I really read a lot about battery draining and I think it is the alarmmanager causing the problems.
The problem is, I have a Motorola Defy mini and this phone is not rootable to get the alarmmanagers dump: http://forum.xda-developers.com/showthread.php?t=1658568&page=11
So I have no idea how to solve the problems with my phone. Do you know what I could do?

Ghazkul said:
Connect your phone to a computer and run this:
Code:
adb shell dumpsys alarm > AlarmDump.txt
or download GScript lite and create the following script:
Code:
cd /sdcard
dumpsys alarm > AlarmDump.txt
Note that you probably need root access for the GScript to work. The AlarmDump.txt file will be on your sdcard root directory.
Click to expand...
Click to collapse
Im trying to do it through the terminal emulator per the second command, but get a permission denied error in the alarmdump.txt file... any idea why?
(samsung galxy S running CM9)

ap1618 said:
Im trying to do it through the terminal emulator per the second command, but get a permission denied error in the alarmdump.txt file... any idea why?
(samsung galxy S running CM9)
Click to expand...
Click to collapse
Before typing in commands, type in "su", you need to give it access to root.

(Delete)

Ghazkul said:
Connect your phone to a computer and run this:
Code:
adb shell dumpsys alarm > AlarmDump.txt
or download URL and create the following script:
Code:
cd /sdcard
dumpsys alarm > AlarmDump.txt
Note that you probably need root access for the GScript to work. The AlarmDump.txt file will be on your sdcard root directory.
Click to expand...
Click to collapse
I executed adb shell dumpsys alarm > AlarmDump.txt, but i can't find AlarmDump.txt on root of my sdcard... What did I do wrong??

Can anybody help with this alarm dump:
Alarm Stats:
com.google.android.location
22ms running, 3 wakeups
3 alarms: act=com.google.android.location.ALARM_WAKEUP_LOCATOR flg=0x4
com.google.android.gsf
2899ms running, 141 wakeups
10 alarms: act=com.google.android.intent.action.GTALK_RECONNECT flg=0x4
3 alarms: flg=0x4
5 alarms: act=com.google.android.intent.action.GTALK_HEARTBEAT flg=0x4
123 alarms: flg=0x4 cmp=com.google.android.gsf/.checkin.EventLogService$Receiver
com.android.jrdfota
306ms running, 2 wakeups
2 alarms: act=com.android.jrdfota.TIME_NOTIFY_CHECK_VER flg=0x4
com.android.vending
592ms running, 23 wakeups
10 alarms: flg=0x4 cmp=com.android.vending/com.google.android.finsky.services.DailyHygiene
13 alarms: flg=0x4 cmp=com.android.vending/com.google.android.finsky.services.ContentSyncService
android
133548ms running, 217 wakeups
3 alarms: act=android.intent.action.DATE_CHANGED flg=0x30000004
879 alarms: act=android.intent.action.TIME_TICK flg=0x40000004
209 alarms: act=com.android.server.ThrottleManager.action.POLL flg=0x4
2 alarms: act=android.app.backup.intent.INIT flg=0x4
187 alarms: act=android.appwidget.action.APPWIDGET_UPDATE flg=0x4
6 alarms: act=com.android.internal.policy.impl.PhoneWindowManager.DELAYED_KEYGUARD flg=0x4
19 alarms: act=android.app.backup.intent.RUN flg=0x40000004
3 alarms: act=android.content.syncmanager.SYNC_ALARM flg=0x4
com.mx.browser
3271ms running, 51 wakeups
51 alarms: act=com.mx.service.SYNC_MXFAV flg=0x4
com.google.android.apps.maps
275ms running, 5 wakeups
5 alarms: act=com.google.android.apps.maps.nlp.ALARM_WAKEUP_CACHE_UPDATER flg=0x4
com.vp.alarmClockPlusDock
443ms running, 2 wakeups
2 alarms: act=com.vp.alarmClockPlusDock.ALARM_ALERT flg=0x4

Related

[Q] Why do I lose my Google connection every time my phone sleeps?

As of a couple nights ago every time my phone sleeps for more than a few minutes and I turn the screen on, my sync goes down, ie: green icons goto white. This is driving me insanse since it's basically killing everything useful pertaining to background data. Gmail messages don't get pushed, twitter updates and messages don't get pushed, nothing works.
I'm running the 26.03.02.26 radio. It also does this with 24.08.04.16. It happens in CM7.0, nightly 39, and UD 3.3.0. It even does this on fresh installs.
What the hell is wrong with my phone? It never ever did this before.
I recorded a logcat. It looks like nothing eventful happens during sleep but once I turn the screen back on telephony activity starts showing up, it drops connection (white icons), and finally resyncs itself (doesn't usually do this automatically)
Code:
I/power ( 1497): *** set_screen_state 0
D/SurfaceFlinger( 1497): About to give-up screen, flinger = 0x93f30
D/AK8975 ( 1390): Compass CLOSE
D/dalvikvm( 3570): GC_EXPLICIT freed 23K, 50% free 3440K/6791K, external 0K/0K,
paused 43ms
D/dalvikvm( 1497): GC_EXTERNAL_ALLOC freed 321K, 37% free 6721K/10503K, external
5751K/5762K, paused 65ms
I/dalvikvm( 1801): Jit: resizing JitTable from 4096 to 8192
D/KeyguardViewMediator( 1497): wakeWhenReadyLocked(26)
I/power ( 1497): *** set_screen_state 1
D/SurfaceFlinger( 1497): Screen about to return, flinger = 0x93f30
D/AK8975 ( 1390): Compass Start
W/InputManagerService( 1497): Window already focused, ignoring focus gain of: co
[email protected]
I/power ( 1497): *** set_screen_state 0
D/dalvikvm( 1497): GC_EXTERNAL_ALLOC freed 251K, 37% free 6704K/10503K, external
4983K/5220K, paused 67ms
D/SurfaceFlinger( 1497): About to give-up screen, flinger = 0x93f30
D/AK8975 ( 1390): Compass CLOSE
D/dalvikvm( 1497): GC_EXTERNAL_ALLOC freed 100K, 37% free 6625K/10503K, external
4578K/4613K, paused 82ms
D/skia ( 1497): purging 194K from font cache [14 entries]
D/dalvikvm( 2133): GC_EXPLICIT freed 4K, 56% free 3050K/6855K, external 3304K/40
93K, paused 30ms
D/dalvikvm( 2422): GC_EXPLICIT freed 57K, 56% free 3346K/7495K, external 4811K/6
008K, paused 51ms
D/dalvikvm( 2694): GC_EXPLICIT freed 2K, 54% free 2501K/5379K, external 0K/0K, p
aused 37ms
I/ ( 2133): TyphoonBackgroundUpdaterService - onStart
I/ ( 2133): Battery level - 88
I/ ( 2133): BackgroundUpdaterService.startServices()
I/ ( 2133): BackgroundUpdaterService - setting repeating alarm to 3600000
ms
I/ ( 2133): Battery level - 88
I/ ( 2133): ServiceBroadcastReceiver - received intent: com.aws.action.el
ite.TNC_REFRESH
I/ ( 2133): WidgetUpdateService - onStart
I/ ( 2133): RadarWidgetService - onStart
I/ ( 2133): WidgetUpdateService - onStart
I/ ( 2133): WidgetUpdateService - onStart
I/ ( 2133): WidgetUpdateService - onStart
I/ ( 2133): TemperatureService - onCreate
I/ ( 2133): TemperatureService - onStart
I/ ( 2133): ServiceBroadcastReceiver - received intent: com.aws.action.el
ite.ALERTS_REFRESH
I/ ( 2133): WidgetUpdateService - starting
I/ ( 2133): Updating all widget of type: class com.aws.android.widget.Typ
hoonForecastWidget
I/ ( 2133): WidgetUpdateService - starting
I/ ( 2133): Updating all widget of type: class com.aws.android.widget.rad
ar.RadarWidget
I/ ( 2133): WidgetUpdateService - starting
I/ ( 2133): Updating all widget of type: class com.aws.android.widget.Typ
hoonWidget
I/ ( 2133): WidgetUpdateService - starting
I/ ( 2133): Updating all widget of type: class com.aws.android.widget.Typ
hoonSmallWidget
I/ ( 2133): TemperatureService - updateData
I/ ( 2133): AlertService - onCreate
I/ ( 2133): AlertService - init
I/ ( 2133): AlertService - onStart
I/ ( 2133): AlertService - start
I/ ( 2133): Got alert data for: Spokane, WA
I/ ( 2133): AlertService - all requests are finished, stopping...
I/ ( 2133): AlertService - onDestroy
I/ ( 2133): WidgetUpdateService - updateCompleted
I/ ( 2133): WidgetUpdateService - requests serviced...stopping
I/ ( 2133): TemperatureService - Live data loaded
I/ ( 2133): TemperatureService - Forecast data loaded
I/ ( 2133): TemperatureService - updateOngoingNotification
V/NotificationService( 1497): Active profile: Default
I/PROFILE ( 1497): Group: Phone containing : com.aws.android.elite : false
I/PROFILE ( 1497): Group: Calendar containing : com.aws.android.elite : false
I/PROFILE ( 1497): Group: Email containing : com.aws.android.elite : false
I/PROFILE ( 1497): Group: GMail containing : com.aws.android.elite : false
I/PROFILE ( 1497): Group: SMS containing : com.aws.android.elite : false
V/ProfileManager( 1497): No active group, returning default: Other
V/NotificationService( 1497): Pkg: com.aws.android.elite group: Other
I/ ( 2133): TemperatureService - onDestroy
D/dalvikvm( 2133): GC_EXPLICIT freed 1124K, 56% free 3065K/6855K, external 3341K
/4093K, paused 39ms
D/KeyguardViewMediator( 1497): wakeWhenReadyLocked(272)
I/power ( 1497): *** set_screen_state 1
D/SurfaceFlinger( 1497): Screen about to return, flinger = 0x93f30
D/AK8975 ( 1390): Compass Start
W/InputManagerService( 1497): Window already focused, ignoring focus gain of: co
[email protected]
I/TelephonyRegistry( 1497): notifyServiceState: 0 home T-Mobile T-Mobile 310260
(manual) HSDPA CSS not supported -1 -1RoamInd: -1DefRoamInd: -1EmergOnly: false
I/TelephonyRegistry( 1497): notifyDataConnection: state=2 isDataConnectivityPoss
ible=true reason=null interfaceName=rmnet0 networkType=8
W/Smack/Packet( 1801): notify conn break (IOEx), close connection
D/Smack ( 1801): [XMPPConn] close connection, notifyClosed=false
D/dalvikvm( 1782): GC_EXTERNAL_ALLOC freed 1072K, 60% free 3453K/8583K, external
9772K/10050K, paused 43ms
I/TelephonyRegistry( 1497): notifyServiceState: 0 home T-Mobile T-Mobile 310260
(manual) UMTS CSS not supported -1 -1RoamInd: -1DefRoamInd: -1EmergOnly: false
I/TelephonyRegistry( 1497): notifyDataConnection: state=2 isDataConnectivityPoss
ible=true reason=null interfaceName=rmnet0 networkType=3
D/dalvikvm( 3570): GC_EXPLICIT freed 16K, 50% free 3440K/6791K, external 0K/0K,
paused 39ms
D/dalvikvm( 2422): GC_EXPLICIT freed 2K, 56% free 3346K/7495K, external 4811K/60
08K, paused 43ms
I/TelephonyRegistry( 1497): notifyServiceState: 0 home T-Mobile T-Mobile 310260
(manual) HSDPA CSS not supported -1 -1RoamInd: -1DefRoamInd: -1EmergOnly: false
I/TelephonyRegistry( 1497): notifyDataConnection: state=2 isDataConnectivityPoss
ible=true reason=null interfaceName=rmnet0 networkType=8
I/TelephonyRegistry( 1497): notifyServiceState: 0 home T-Mobile T-Mobile 310260
(manual) UMTS CSS not supported -1 -1RoamInd: -1DefRoamInd: -1EmergOnly: false
I/TelephonyRegistry( 1497): notifyDataConnection: state=2 isDataConnectivityPoss
ible=true reason=null interfaceName=rmnet0 networkType=3
D/dalvikvm( 1801): GC_CONCURRENT freed 468K, 49% free 3340K/6471K, external 0K/5
12K, paused 2ms+3ms
D/dalvikvm( 1801): GC_CONCURRENT freed 516K, 50% free 3261K/6471K, external 0K/5
12K, paused 3ms+2ms
D/GTalkService( 1801): [RosterMgr] roster not modified
D/GTalkService( 1801): [OtrMgr] OTR not modified
I/TelephonyRegistry( 1497): notifyServiceState: 0 home T-Mobile T-Mobile 310260
(manual) HSDPA CSS not supported -1 -1RoamInd: -1DefRoamInd: -1EmergOnly: false
I/TelephonyRegistry( 1497): notifyDataConnection: state=2 isDataConnectivityPoss
ible=true reason=null interfaceName=rmnet0 networkType=8
D/GTalkService( 1801): [RosterListenerImpl] removeTalkPresence for account=1, de
leted=1
D/GTalkService( 1801): [ContactPresence] removeAllContactsPresence: account=1, s
et null presence for 1
I/TelephonyRegistry( 1497): notifyServiceState: 0 home T-Mobile T-Mobile 310260
(manual) UMTS CSS not supported -1 -1RoamInd: -1DefRoamInd: -1EmergOnly: false
I/TelephonyRegistry( 1497): notifyDataConnection: state=2 isDataConnectivityPoss
ible=true reason=null interfaceName=rmnet0 networkType=3
D/dalvikvm( 2694): GC_EXPLICIT freed 2K, 54% free 2501K/5379K, external 0K/0K, p
aused 39ms
^C
I think I've narrowed it down to Google Talk. I froze it in titanium backup and have yet to see the issue pop back up.
Edit: Nevermind... still dropping connection. Ugh.

Best way to diagnose random lockup?

I an running Deck's 1.3b Rom with the latest Radio's and Savagedzen 2.2.1 BFS HAVS kernel. Im almost positive it isn't the ROM, but I get occasional random lockups, where the phone will just lockup and be unresponsive to the screen or buttons.
For example,
If I am playing music (stock app, and Music beta app)over bluetooth the music stops (most of the time) Then all of the sudden weather it be 15 or 60 seconds later, the phone snaps out of it, and operates normally and the music starts where it left off. It doesn't only happen while playing music, its pattern makes no sense. I always wipe everything at least 2x when flashing a new ROM, and this behavior has occured while using CM7 builds, and various other ROM's.
Anyhow, what can I do to try and diagnose what is going on here...I can try to install a log capture app and post a logcat, will that help diagnose? What can I do besides that? Help is appreciated.
The response has been overwhelming... thx
Here is the logcat taken right after a random lockup this AM,
The last line of the log is me launching the logcollector right after the lockup which lasted maybe 20 or 30 seconds.
08-02 08:40:44.517 I/RealTimeChat(10824): Sending ping to bunch
08-02 08:40:44.918 I/RealTimeChat(10824): Ping response from backend
08-02 08:41:05.318 D/dalvikvm( 428): GC_EXPLICIT freed 161K, 49% free 4503K/8775K, external 9233K/11252K, paused 137ms
08-02 08:41:10.263 D/dalvikvm( 576): GC_EXPLICIT freed 83K, 52% free 2786K/5767K, external 0K/0K, paused 75ms
08-02 08:42:05.246 D/dalvikvm(11440): GC_EXPLICIT freed 59K, 50% free 2709K/5379K, external 0K/0K, paused 82ms
08-02 08:42:10.311 D/dalvikvm(11423): GC_EXPLICIT freed 13K, 45% free 3794K/6791K, external 0K/0K, paused 135ms
08-02 08:42:11.292 D/AudioFlinger( 126): setParameters(): io 1, keyvalue routing=0, tid 167, calling tid 126
08-02 08:42:11.292 I/AudioHardwareQSD( 126): Routing audio to Handset
08-02 08:42:11.422 I/AudioService( 186): AudioFocus requestAudioFocus() from [email protected][email protected]
08-02 08:42:11.422 I/AudioService( 186): Remote Control registerMediaButtonEventReceiver() for ComponentInfo{com.android.music/com.android.music.MediaButtonIntentReceiver}
08-02 08:42:11.472 V/NotificationService( 186): Active profile: Default
08-02 08:42:11.472 I/PROFILE ( 186): Group: Gmail containing : com.android.music : false
08-02 08:42:11.472 I/PROFILE ( 186): Group: Phone containing : com.android.music : false
08-02 08:42:11.472 I/PROFILE ( 186): Group: Calendar containing : com.android.music : false
08-02 08:42:11.472 I/PROFILE ( 186): Group: Email containing : com.android.music : false
08-02 08:42:11.472 I/PROFILE ( 186): Group: SMS containing : com.android.music : false
08-02 08:42:11.472 V/ProfileManager( 186): No active group, returning default: Other
08-02 08:42:11.472 V/NotificationService( 186): Pkg: com.android.music group: Other
08-02 08:42:11.482 I/Effect-DRC( 126): Compression factor set to: 1.000000
08-02 08:42:11.482 I/Effect-DRC( 126): Compression factor set to: 1.000000
08-02 08:42:11.482 I/Effect-DRC( 126): Compression factor set to: 1.000000
08-02 08:42:11.482 I/Effect-DRC( 126): Compression factor set to: 1.000000
08-02 08:42:11.492 I/Effect-DRC( 126): Compression factor set to: 1.000000
08-02 08:42:11.502 I/Effect-BassBoost( 126): New strength: 0
08-02 08:42:11.522 I/Effect-Equalizer( 126): Setting band 2 to 0
08-02 08:42:11.542 I/Effect-Equalizer( 126): Setting band 2 to 1
08-02 08:42:11.542 I/Effect-Equalizer( 126): Setting band 2 to 2
08-02 08:42:11.542 I/Effect-Equalizer( 126): Setting band 2 to 3
08-02 08:42:11.542 I/Effect-Equalizer( 126): Setting band 2 to 4
08-02 08:42:11.542 I/Effect-Equalizer( 126): Setting loudness correction reference to 100.000000 dB
08-02 08:42:19.810 D/WifiService( 186): acquireWifiLockLocked: WifiLock{i type=2 [email protected]}
08-02 08:42:19.890 D/SettingsAppWidgetProvider(11342): Widget is from a previous version... Let's update
08-02 08:42:19.890 D/SettingsAppWidgetProvider(11342): No instances yet... Wait for at least one instance to exist before adding global settings
08-02 08:42:23.324 D/Tethering( 186): eth0 is not a tetherable iface, ignoring
08-02 08:42:24.335 D/WifiService( 186): ACTION_BATTERY_CHANGED pluggedType: 1
08-02 08:42:24.375 D/WifiService( 186): acquireWifiLockLocked: WifiLock{NetworkLocationProvider type=2 [email protected]}
08-02 08:42:24.475 D/SettingsAppWidgetProvider(11342): Widget is from a previous version... Let's update
08-02 08:42:24.475 D/SettingsAppWidgetProvider(11342): No instances yet... Wait for at least one instance to exist before adding global settings
08-02 08:42:25.005 D/AK8973 ( 132): Compass Start
08-02 08:42:25.056 D/dalvikvm( 939): GC_CONCURRENT freed 567K, 50% free 3775K/7431K, external 0K/512K, paused 6ms+7ms
08-02 08:42:25.826 I/wpa_supplicant(11780): CTRL-EVENT-STATE-CHANGE id=-1 state=2 BSSID=00:00:00:00:00:00
08-02 08:42:25.836 V/WifiMonitor( 186): Event [CTRL-EVENT-STATE-CHANGE id=-1 state=2 BSSID=00:00:00:00:00:00]
08-02 08:42:25.846 V/WifiStateTracker( 186): Connection to supplicant established, state=DISCONNECTED
08-02 08:42:25.866 I/wpa_supplicant(11780): CTRL-EVENT-STATE-CHANGE id=-1 state=8 BSSID=00:00:00:00:00:00
08-02 08:42:25.866 V/WifiMonitor( 186): Event [CTRL-EVENT-STATE-CHANGE id=-1 state=8 BSSID=00:00:00:00:00:00]
08-02 08:42:25.876 V/WifiStateTracker( 186): Changing supplicant state: DISCONNECTED ==> SCANNING
08-02 08:42:25.876 V/WifiStateTracker( 186): Changing supplicant state: SCANNING ==> DORMANT
08-02 08:42:25.876 D/WifiStateTracker( 186): Reset connections and stopping DHCP
08-02 08:42:25.896 I/wpa_supplicant(11780): CTRL-EVENT-STATE-CHANGE id=-1 state=8 BSSID=00:00:00:00:00:00
08-02 08:42:25.896 V/WifiMonitor( 186): Event [CTRL-EVENT-STATE-CHANGE id=-1 state=8 BSSID=00:00:00:00:00:00]
08-02 08:42:25.946 D/WifiService( 186): releaseWifiLockLocked: WifiLock{i type=2 [email protected]}
08-02 08:42:26.297 D/dalvikvm( 186): GC_CONCURRENT freed 1160K, 38% free 7486K/11975K, external 4288K/4388K, paused 7ms+27ms
08-02 08:42:26.317 I/wpa_supplicant(11780): CTRL-EVENT-STATE-CHANGE id=-1 state=8 BSSID=00:00:00:00:00:00
08-02 08:42:26.317 V/WifiMonitor( 186): Event [CTRL-EVENT-STATE-CHANGE id=-1 state=8 BSSID=00:00:00:00:00:00]
08-02 08:42:26.357 I/wpa_supplicant(11780): CTRL-EVENT-TERMINATING - signal 15 received
08-02 08:42:26.357 I/wpa_supplicant(11780): CTRL-EVENT-TERMINATING - signal 0 received
08-02 08:42:26.357 I/wpa_supplicant(11780): CTRL-EVENT-STATE-CHANGE id=-1 state=8 BSSID=00:00:00:00:00:00
08-02 08:42:26.357 V/WifiMonitor( 186): Event [CTRL-EVENT-TERMINATING - signal 15 received]
08-02 08:42:26.387 D/SettingsAppWidgetProvider(11342): Widget is from a previous version... Let's update
08-02 08:42:26.387 D/SettingsAppWidgetProvider(11342): No instances yet... Wait for at least one instance to exist before adding global settings
08-02 08:42:26.387 D/WifiStateTracker( 186): Reset connections and stopping DHCP
08-02 08:42:26.897 D/WifiStateTracker( 186): Disabling interface
08-02 08:42:26.897 V/WifiStateTracker( 186): Changing supplicant state: DORMANT ==> DORMANT
08-02 08:42:26.897 V/WifiStateTracker( 186): Changing supplicant state: DORMANT ==> DORMANT
08-02 08:42:26.897 V/WifiStateTracker( 186): Connection to supplicant lost
08-02 08:42:27.398 D/WifiStateTracker( 186): Disabling interface
08-02 08:42:29.420 I/System.out( 469): [INFO:126580587]: LogSource: Running flush
08-02 08:42:29.430 I/System.out( 469): [INFO:126580593]: LogSource: Sending payload [bytes=380]
08-02 08:42:31.932 I/System.out( 469): [INFO:126583097]: LogSource: Response [http=200,length=89]
08-02 08:42:31.942 I/System.out( 469): [INFO:126583099]: LogSource: Read id 50, status code 200
08-02 08:42:31.952 D/lib_locapi( 186): loc_eng_inject_location, accuracy = 1367.0
08-02 08:42:34.465 D/dalvikvm(11342): GC_EXPLICIT freed 20K, 49% free 2837K/5511K, external 0K/0K, paused 66ms
08-02 08:42:34.475 D/WifiService( 186): releaseWifiLockLocked: WifiLock{NetworkLocationProvider type=2 [email protected]}
08-02 08:42:35.185 D/AK8973 ( 132): Compass CLOSE
08-02 08:43:18.738 D/KeyguardViewMediator( 186): wakeWhenReadyLocked(26)
08-02 08:43:18.738 I/power ( 186): *** set_screen_state 1
08-02 08:43:18.758 D/AK8973 ( 132): Compass Start
08-02 08:43:18.768 W/AudioFlinger( 126): write blocked for 39266 msecs, 1 delayed writes, thread 0x4e750
08-02 08:43:18.778 E/Tethering( 186): attempting to remove unknown iface (eth0), ignoring
08-02 08:43:18.778 E/wpa_supplicant(11780): ioctl[SIOCGIWMODE]
08-02 08:43:18.798 E/wpa_supplicant(11780): ioctl[SIOCSIWAP]
08-02 08:43:18.798 E/wpa_supplicant(11780): ioctl[SIOCGIFFLAGS]
08-02 08:43:18.848 I/power ( 186): *** set_screen_state 0
08-02 08:43:18.858 D/KeyguardViewMediator( 186): wakeWhenReadyLocked(26)
08-02 08:43:18.858 D/KeyguardViewMediator( 186): wakeWhenReadyLocked(26)
08-02 08:43:19.198 D/SurfaceFlinger( 186): Screen about to return, flinger = 0x949c0
08-02 08:43:19.278 I/power ( 186): *** set_screen_state 1
08-02 08:43:19.358 D/SurfaceFlinger( 186): About to give-up screen, flinger = 0x949c0
08-02 08:43:19.479 D/WimaxService( 186): onReceive SCREEN_ON
08-02 08:43:19.479 I/WimaxStateTracker( 186): handleScreenOn : Wimax is not enabled
08-02 08:43:19.759 D/AK8973 ( 132): Compass CLOSE
08-02 08:43:19.759 D/AK8973 ( 132): Compass Start
08-02 08:43:20.480 D/SurfaceFlinger( 186): Screen about to return, flinger = 0x949c0
08-02 08:43:21.180 I/power ( 186): *** set_screen_state 0
08-02 08:43:21.250 D/SurfaceFlinger( 186): About to give-up screen, flinger = 0x949c0
08-02 08:43:21.350 I/TelephonyRegistry( 186): notifyServiceState: 0 home Sprint Sprint 31000 EvDo rev. A CSS supported 3 4162RoamInd: 128DefRoamInd: 1EmergOnly: false
08-02 08:43:21.671 D/WifiService( 186): acquireWifiLockLocked: WifiLock{i type=2 [email protected]}
08-02 08:43:21.691 W/ActivityManager( 186): Activity pause timeout for HistoryRecord{40935188 com.android.music/.MediaPlaybackActivity}
08-02 08:43:21.871 D/KeyguardViewMediator( 186): wakeWhenReadyLocked(26)
08-02 08:43:21.871 I/power ( 186): *** set_screen_state 1
08-02 08:43:21.961 D/AK8973 ( 132): Compass CLOSE
08-02 08:43:21.971 D/AK8973 ( 132): Compass Start
08-02 08:43:22.171 D/WimaxService( 186): onReceive SCREEN_ON
08-02 08:43:22.171 I/WimaxStateTracker( 186): handleScreenOn : Wimax is not enabled
08-02 08:43:22.672 D/SurfaceFlinger( 186): Screen about to return, flinger = 0x949c0
08-02 08:43:23.813 D/SettingsAppWidgetProvider(11342): Widget is from a previous version... Let's update
08-02 08:43:23.953 D/SettingsAppWidgetProvider(11342): No instances yet... Wait for at least one instance to exist before adding global settings
08-02 08:43:24.353 W/InputManagerService( 186): Window already focused, ignoring focus gain of: [email protected]
08-02 08:43:24.423 I/System.out( 469): [INFO:126635597]: LogSource: Running flush
08-02 08:43:24.433 I/System.out( 469): [INFO:126635599]: LogSource: Sending payload [bytes=380]
08-02 08:43:24.524 D/WimaxService( 186): onReceive SCREEN_ON
08-02 08:43:24.524 I/WimaxStateTracker( 186): handleScreenOn : Wimax is not enabled
08-02 08:43:24.634 D/SettingsAppWidgetProvider(11342): Widget is from a previous version... Let's update
08-02 08:43:24.634 D/SettingsAppWidgetProvider(11342): No instances yet... Wait for at least one instance to exist before adding global settings
08-02 08:43:24.744 D/SettingsAppWidgetProvider(11342): Widget is from a previous version... Let's update
08-02 08:43:24.744 D/SettingsAppWidgetProvider(11342): No instances yet... Wait for at least one instance to exist before adding global settings
08-02 08:43:25.585 I/ActivityManager( 186): Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.android.launcher/com.android.launcher2.Launcher } from pid 186
08-02 08:43:25.625 V/RenderScript_jni( 428): surfaceCreated
08-02 08:43:25.625 V/RenderScript_jni( 428): surfaceChanged
08-02 08:43:27.036 I/System.out( 469): [INFO:126638201]: LogSource: Response [http=200,length=89]
08-02 08:43:27.036 I/System.out( 469): [INFO:126638203]: LogSource: Read id 51, status code 200
08-02 08:43:27.046 D/lib_locapi( 186): loc_eng_inject_location, accuracy = 1267.0
08-02 08:43:27.076 I/ActivityManager( 186): Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.xtralogic.android.logcollector/.SendLogActivity bnds=[5,553][115,671] } from pid 428
08-02 08:43:27.096 D/Tethering( 186): eth0 is not a tetherable iface, ignoring
08-02 08:43:27.126 I/ActivityManager( 186): Start proc com.xtralogic.android.logcollector for activity com.xtralogic.android.logcollector/.SendLogActivity: pid=11810 uid=10102 gids={1007, 1015}

[Q] I Cannot Flash to my Arc

I cannot use flashtools in my phone, i installed drivers several times and i can use smoothly fastboot but i cant flash any files to my phone
There is no problem to getting into flash mode, sometimes when i trying to flash it quits from flash mode and starting to charging but it happens rarely
I am using nokia's data cable not the original se's cable
I cant find any solutions in forums also
09/039/2011 17:39:32 - INFO - Searching Xperia....
09/039/2011 17:39:32 - INFO - Found at USB\VID_0FCE&PID_ADDE\5&2294CD&0&1
09/039/2011 17:39:32 - INFO - Start Flashing
09/039/2011 17:39:32 - INFO - VER="R9A021";DATE="20110128";TIME="11:49:00";
09/039/2011 17:39:32 - INFO - Flashing loader
09/039/2011 17:39:32 - ERROR - Error flashing. Aborted
09/039/2011 17:39:32 - INFO - Now unplug the device and power it on
09/039/2011 17:39:32 - INFO - Then go to application settings
09/039/2011 17:39:32 - INFO - turn on Unknown Sources and Debugging
Unknown Sources and Debugging is turned on
I unlocked my bootloader so i cannot use seus
When i opened debug this the result
09/043/2011 17:43:12 - INFO - Start Flashing
09/043/2011 17:43:12 - INFO - VER="R9A021";DATE="20110128";TIME="11:49:00";
09/043/2011 17:43:12 - DEBUG - write(cmd=1) (finish)
09/043/2011 17:43:12 - DEBUG - Reply : PROT_VER="01";DATE="20110128";TIME="11:49:00";VER="R9A021";UNIQUE_DEV_ID="D9472A9AD68EF2B8D2B8CE64F1E0F58712FFF640";CXC="1241-3656";TYPE="S1_EROM";SEC_LOCK_STATUS="LOCKED";MAN_ID="0098";DEV_ID="00B3";EXT_DEV_ID="0055";EROM_AID="0001";LOADER_AID="0001";SW_AID="0001";CUST_AID="0001";SIM_LOCK_AID="0001";PROD_ID="0001";IMEI="*********";MSN="CB5A1EJQNC";SIN_VER="0001";AID_TAMP="NOT_TAMPERED";LOADER_ROOT="S1_Loader_Root_773f";EROM_ROOT="S1_EROM_Root_d601";SW_ROOT="S1_SW_Root_883f";CUST_ROOT="S1_Cust_Root_9603";SIM_LOCK_ROOT="S1_SL_Root_c422";HW_CONF_ROOT="S1_HWConf_Root_08af";BIM_STATE="DISABLED";ROOTING_STATUS="ROOTED";
09/043/2011 17:43:12 - DEBUG - Reply(Hex) : [50, 52, 4F, 54, 5F, 56, 45, 52, 3D, 22, 30, 31, 22, 3B, 44, 41, 54, 45, 3D, 22, 32, 30, 31, 31, 30, 31, 32, 38, 22, 3B, 54, 49, 4D, 45, 3D, 22, 31, 31, 3A, 34, 39, 3A, 30, 30, 22, 3B, 56, 45, 52, 3D, 22, 52, 39, 41, 30, 32, 31, 22, 3B, 55, 4E, 49, 51, 55, 45, 5F, 44, 45, 56, 5F, 49, 44, 3D, 22, 44, 39, 34, 37, 32, 41, 39, 41, 44, 36, 38, 45, 46, 32, 42, 38, 44, 32, 42, 38, 43, 45, 36, 34, 46, 31, 45, 30, 46, 35, 38, 37, 31, 32, 46, 46, 46, 36, 34, 30, 22, 3B, 43, 58, 43, 3D, 22, 31, 32, 34, 31, 2D, 33, 36, 35, 36, 22, 3B, 54, 59, 50, 45, 3D, 22, 53, 31, 5F, 45, 52, 4F, 4D, 22, 3B, 53, 45, 43, 5F, 4C, 4F, 43, 4B, 5F, 53, 54, 41, 54, 55, 53, 3D, 22, 4C, 4F, 43, 4B, 45, 44, 22, 3B, 4D, 41, 4E, 5F, 49, 44, 3D, 22, 30, 30, 39, 38, 22, 3B, 44, 45, 56, 5F, 49, 44, 3D, 22, 30, 30, 42, 33, 22, 3B, 45, 58, 54, 5F, 44, 45, 56, 5F, 49, 44, 3D, 22, 30, 30, 35, 35, 22, 3B, 45, 52, 4F, 4D, 5F, 41, 49, 44, 3D, 22, 30, 30, 30, 31, 22, 3B, 4C, 4F, 41, 44, 45, 52, 5F, 41, 49, 44, 3D, 22, 30, 30, 30, 31, 22, 3B, 53, 57, 5F, 41, 49, 44, 3D, 22, 30, 30, 30, 31, 22, 3B, 43, 55, 53, 54, 5F, 41, 49, 44, 3D, 22, 30, 30, 30, 31, 22, 3B, 53, 49, 4D, 5F, 4C, 4F, 43, 4B, 5F, 41, 49, 44, 3D, 22, 30, 30, 30, 31, 22, 3B, 50, 52, 4F, 44, 5F, 49, 44, 3D, 22, 30, 30, 30, 31, 22, 3B, 49, 4D, 45, 49, 3D, 22, 30, 31, 32, 36, 38, 32, 30, 30, 35, 39, 35, 36, 37, 33, 22, 3B, 4D, 53, 4E, 3D, 22, 43, 42, 35, 41, 31, 45, 4A, 51, 4E, 43, 22, 3B, 53, 49, 4E, 5F, 56, 45, 52, 3D, 22, 30, 30, 30, 31, 22, 3B, 41, 49, 44, 5F, 54, 41, 4D, 50, 3D, 22, 4E, 4F, 54, 5F, 54, 41, 4D, 50, 45, 52, 45, 44, 22, 3B, 4C, 4F, 41, 44, 45, 52, 5F, 52, 4F, 4F, 54, 3D, 22, 53, 31, 5F, 4C, 6F, 61, 64, 65, 72, 5F, 52, 6F, 6F, 74, 5F, 37, 37, 33, 66, 22, 3B, 45, 52, 4F, 4D, 5F, 52, 4F, 4F, 54, 3D, 22, 53, 31, 5F, 45, 52, 4F, 4D, 5F, 52, 6F, 6F, 74, 5F, 64, 36, 30, 31, 22, 3B, 53, 57, 5F, 52, 4F, 4F, 54, 3D, 22, 53, 31, 5F, 53, 57, 5F, 52, 6F, 6F, 74, 5F, 38, 38, 33, 66, 22, 3B, 43, 55, 53, 54, 5F, 52, 4F, 4F, 54, 3D, 22, 53, 31, 5F, 43, 75, 73, 74, 5F, 52, 6F, 6F, 74, 5F, 39, 36, 30, 33, 22, 3B, 53, 49, 4D, 5F, 4C, 4F, 43, 4B, 5F, 52, 4F, 4F, 54, 3D, 22, 53, 31, 5F, 53, 4C, 5F, 52, 6F, 6F, 74, 5F, 63, 34, 32, 32, 22, 3B, 48, 57, 5F, 43, 4F, 4E, 46, 5F, 52, 4F, 4F, 54, 3D, 22, 53, 31, 5F, 48, 57, 43, 6F, 6E, 66, 5F, 52, 6F, 6F, 74, 5F, 30, 38, 61, 66, 22, 3B, 42, 49, 4D, 5F, 53, 54, 41, 54, 45, 3D, 22, 44, 49, 53, 41, 42, 4C, 45, 44, 22, 3B, 52, 4F, 4F, 54, 49, 4E, 47, 5F, 53, 54, 41, 54, 55, 53, 3D, 22, 52, 4F, 4F, 54, 45, 44, 22, 3B, 00, ]
09/043/2011 17:43:12 - DEBUG - write(cmd=9) (finish)
09/043/2011 17:43:12 - DEBUG - Reply :
09/043/2011 17:43:12 - DEBUG - Reply(Hex) : []
09/043/2011 17:43:12 - DEBUG - write(cmd=10) (finish)
09/043/2011 17:43:12 - DEBUG - Reply :
09/043/2011 17:43:12 - DEBUG - Reply(Hex) : []
09/043/2011 17:43:12 - INFO - Flashing loader
09/043/2011 17:43:12 - DEBUG - Streaming from file : .\loaders\null.sin
09/043/2011 17:43:12 - ERROR - Error flashing. Aborted
09/043/2011 17:43:12 - INFO - Now unplug the device and power it on
09/043/2011 17:43:12 - INFO - Then go to application settings
09/043/2011 17:43:12 - INFO - turn on Unknown Sources and Debugging
And also when i'm selecting ftf file Firmware content shows only simlock.ta
Use the original cable.
Maybe there's a problem with the firmware you want to flash, I'm using a nokia original cable with my arc, and it works perfectly, I've flashed it many times without any issues.
Same thing happens to my friends arc. I am trying to flash the 4.0.1.A.0.283 Generic Global firmware but it always stops at system.sin with a similar error.
The only way to fix the phone is via SEUS (same cable)
I guess I founded the problem my windows is in my language such is Turkish so I installed a virtual windows xp English and everything works fine so any Turkish users who suffered same problem solution is changing language even though I changed my region and keyboard input it still gave me same result
Sent from my LT15i using XDA App
Have u made sure that when u select the firmware to flash all the components in the right hand box are highlighted ? This happened to me once and I couldn't work it out then I scrolled down on the right hand box and realised there was a box at the bottom I hadn't highlighted for example loader_ sin or whatever , if all the bits arent selected it will abort flashing and say error . Once I had selected all parts of the .ftf the flash was successful . Sorry if this does make much sense but I hope u can understand what I mean
Sent from my LT15i using xda premium
EDIT:
I used the Laptop with the same cable, software etc... and everything went smoothly.
Something must be wrong with my PC?!! (Mmmm re-imaged it twice)
Still, strange that SEUS would only work but Flashtool did`nt?!!

[Q] Does not enter in sleep mode

I have the stock 4.0.4 rooted, I've left on at night while sleeping and I have most of the time active terminal, I do not understand why if I have coverage, the telephone have 55% of usage, but the battery drops from 82% to 76%
Please if someone could help me, I'm going crazy with this issue
I deleted the following applications of the original rom
ApplicationsProvider.apk
BackupRestoreConfirmation.apk
Bluetooth.apk
BooksTablet.apk
CertInstaller.apk
ChromeBookmarksSyncAdapter.apk
DrmProvider.apk
EmailGoogle.apk
ExchangeGoogle.apk
FaceLock.apk
GenieWidget.apk
GoogleBackupTransport.apk
GoogleEarth.apk
GoogleFeedback.apk
GooglePartnerSetup.apk
GoogleQuickSearchBox.apk
GoogleTTS.apk
HoloSpiralWallpaper.apk
HTMLViewer.apk
KeyChain.apk
LatinImeDictionaryPack.apk
LiveWallpapers.apk
LiveWallpapersPicker.apk
Maps.apk
MediaUploader.apk
Microbes.apk
Music2.apk
MusicFX.apk
NetworkLocation.apk
Nfc.apk
NoiseField.apk
OneTimeInitializer.apk
PhaseBeam.apk
Phonesky.apk
PlusOne.apk
SharedStorageBackup.apk
SoundRecorder.apk
Stk.apk
Street.apk
TagGoogle.apk
Talk.apk
talkback.apk
Thinkfree.apk
UserDictionaryProvider.apk
VideoEditorGoogle.apk
Videos.apk
VisualizationWallpapers.apk
VoiceDialer.apk
VoiceSearch.apk
VpnDialogs.apk
YouTube.apk
I installed these others in the folder / system / app
ApexLauncher.apk
DeskNotes.apk
Gallery.apk (without picasa Sync)
Gmail.apk
LightFlow.apk
Lock.apk (Screen off and lock)
Music.apk (PlayerPro Music Player)
RootExplorer.apk
Twitter.apk
Vending.apk
WeatherPro.apk
WhatsApp.apk
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
http://dl.dropbox.com/u/19157944/Screenshot_2012-04-18-07-15-31.png
and the battery gives me the following stat
===================
General Information
===================
BetterBatteryStats version: 1.7.1.0
Creation Date: 2012-04-18 07:22:57
Statistic Type: (3)
Since 4 m 11 s
VERSION.RELEASE: 4.0.4
BRAND: google
DEVICE: maguro
MANUFACTURER: samsung
MODEL: Galaxy Nexus
RADIO: unknown
BOOTLOADER: PRIMELA03
FINGERPRINT: google/yakju/maguro:4.0.4/IMM76D/299849:user/release-keys
HARDWARE: tuna
ID: IMM76D
Rooted: true
===========
Other Usage
===========
Awake (): 4 m 11 s (251 s) Ratio: 100,0%
Screen On (): 1 m 12 s (72 s) Ratio: 28,6%
=========
Wakelocks
=========
Checkin Service (Servicios de Google): 2 m 20 s (140 s) Count:21 55,9%
GTALK_ASYNC_CONN_com.google.android.gsf.gtalkservice.AndroidEndpoint (Servicios de Google): 1 m 10 s (70 s) Count:17 27,8%
RILJ (Teléfono): 8 s (8 s) Count:33 3,3%
GpsLocationProvider (Sistema Android): 6 s (6 s) Count:31 2,6%
sleep_broadcast (Sistema Android): 3 s (3 s) Count:33 1,4%
ActivityManager-Launch (Sistema Android): 2 s (2 s) Count:30 1,2%
AudioOut_1 (1013): 2 s (2 s) Count:1 1,1%
================
Kernel Wakelocks
================
No reference since unplugged set yet (): (0 s) Cntc/wc/ec)1/1/1 100,0%
=========
Processes
=========
system (Sistema Android): Sys: (0 s) Us: (0 s) Starts: 0
======================
Alarms (requires root)
======================
No reference since unplugged set yet (): Wakeups: 0
========
Services
========
Active since: The time when the service was first made active, either by someone starting or binding to it.
Last activity: The time when there was last activity in the service (either explicit requests to start it or clients binding to it)
See http://developer.android.com/reference/android/app/ActivityManager.RunningServiceInfo.html
com.whatsapp (com.whatsapp.ExternalMediaManager)
Active since: 27 s
Last activity: 27 s
Crash count:0
com.android.phone (com.android.phone.BluetoothHeadsetService)
Active since: 20 s
Last activity: 20 s
Crash count:0
fr.clockwidget.lpsense (fr.clockwidget.lpsense.UpdateService)
Active since: 27 s
Last activity: 28 s
Crash count:0
com.android.systemui (com.android.systemui.ImageWallpaper)
Active since: 19 s
Last activity: 19 s
Crash count:0
com.android.vending (com.google.android.finsky.services.DailyHygiene)
Active since: 4 m 12 s
Last activity: 4 m 12 s
Crash count:0
com.android.systemui (com.android.systemui.SystemUIService)
Active since: 18 s
Last activity: 18 s
Crash count:0
com.google.process.gapps (com.google.android.gsf.gtalkservice.service.GTalkService)
Active since: 35 s
Last activity: 4 m 11 s
Crash count:0
com.rageconsulting.android.lightflow (com.rageconsulting.android.lightflow.service.MainRunningService)
Active since: 21 s
Last activity: 28 s
Crash count:0
com.google.android.inputmethod.latin (com.android.inputmethod.latin.LatinIME)
Active since: 20 s
Last activity: 20 s
Crash count:0
com.whatsapp (com.whatsapp.messaging.MessageService)
Active since: 25 s
Last activity: 3 m 42 s
Crash count:0
com.google.process.gapps (com.google.android.gsf.checkin.CheckinService)
Active since: 4 m 28 s
Last activity: 4 m 28 s
Crash count:0
Your better battery stats log is only four and half minutes long, it doesn't match the time period you have screenshots for. I think you may have hit the "set custom ref" button when you were taking these readings or otherwise reset the recording.
While you do clearly have a wakelock issue of some sort (needs a full log to diagnose), it doesn't seem to be introducing a lot of battery drain. 6% over 7 hours is pretty great for idle drain.
Also, each entry in your battery usage is % of the amount drained, not your total battery. For these stats, you're down to 76%, so you've drained 24%.
-"Dispositivo inactivo" is the amount your phone uses to maintain its signal and power the radios. It's used 22% of 24%, so about 5% of your battery.
-"Telefono inactivo" has used 50% of 24%, or 12% of the battery.
Thanks for your response, ups, my battery stats log is only four and half minutes long, you are right, sorry for the mistake.
Yesterday I make a full restore image from google 4.0.4 and a full wipe and delete the following app of my /system/app
ApplicationsProvider.apk
BackupRestoreConfirmation.apk
Bluetooth.apk
BooksTablet.apk
CertInstaller.apk
ChromeBookmarksSyncAdapter.apk
DrmProvider.apk
EmailGoogle.apk
ExchangeGoogle.apk
FaceLock.apk
GenieWidget.apk
GoogleBackupTransport.apk
GoogleEarth.apk
GoogleFeedback.apk
GooglePartnerSetup.apk
GoogleQuickSearchBox.apk
GoogleTTS.apk
HoloSpiralWallpaper.apk
HTMLViewer.apk
KeyChain.apk
LatinImeDictionaryPack.apk
LiveWallpapers.apk
LiveWallpapersPicker.apk
Maps.apk
MediaUploader.apk
Microbes.apk
Music2.apk
MusicFX.apk
NetworkLocation.apk
Nfc.apk
NoiseField.apk
OneTimeInitializer.apk
PhaseBeam.apk
Phonesky.apk
PlusOne.apk
SharedStorageBackup.apk
SoundRecorder.apk
Stk.apk
Street.apk
TagGoogle.apk
Talk.apk
talkback.apk
Thinkfree.apk
UserDictionaryProvider.apk
VideoEditorGoogle.apk
Videos.apk
VisualizationWallpapers.apk
VoiceDialer.apk
VoiceSearch.apk
VpnDialogs.apk
YouTube.apk
and my stats are attached, and here are the battery stats of tonight
===================
General Information
===================
BetterBatteryStats version: 1.7.1.0
Creation Date: 2012-04-19 08:02:22
Statistic Type: (3)
Since 7 h 38 m 1 s
VERSION.RELEASE: 4.0.4
BRAND: google
DEVICE: maguro
MANUFACTURER: samsung
MODEL: Galaxy Nexus
RADIO: unknown
BOOTLOADER: PRIMELA03
FINGERPRINT: google/yakju/maguro:4.0.4/IMM76D/299849:user/release-keys
HARDWARE: tuna
ID: IMM76D
Rooted: true
===========
Other Usage
===========
Awake (): 6 m 8 s (368 s) Ratio: 1,3%
Screen On (): 2 m 48 s (168 s) Ratio: 0,6%
=========
Wakelocks
=========
AudioOut_1 (1013): 32 s (32 s) Count:8 0,1%
RILJ (Teléfono): 9 s (9 s) Count:65 0,0%
ActivityManager-Launch (Sistema Android): 8 s (8 s) Count:56 0,0%
AlarmManager (Sistema Android): 3 s (3 s) Count:300 0,0%
Checkin Service (Servicios de Google): 1 s (1 s) Count:82 0,0%
SCREEN_FROZEN (Sistema Android): 1 s (1 s) Count:11 0,0%
Event Log Service (Servicios de Google): 1 s (1 s) Count:16 0,0%
================
Kernel Wakelocks
================
No reference since unplugged set yet (): (0 s) Cntc/wc/ec)1/1/1 100,0%
=========
Processes
=========
system (Sistema Android): Sys: (0 s) Us: 1 s (1 s) Starts: 0
======================
Alarms (requires root)
======================
No reference since unplugged set yet (): Wakeups: 0
========
Services
========
Active since: The time when the service was first made active, either by someone starting or binding to it.
Last activity: The time when there was last activity in the service (either explicit requests to start it or clients binding to it)
See http://developer.android.com/reference/android/app/ActivityManager.RunningServiceInfo.html
com.android.phone (com.android.phone.BluetoothHeadsetService)
Active since: 20 s
Last activity: 20 s
Crash count:0
com.android.systemui (com.android.systemui.ImageWallpaper)
Active since: 19 s
Last activity: 19 s
Crash count:0
com.android.systemui (com.android.systemui.SystemUIService)
Active since: 18 s
Last activity: 18 s
Crash count:0
com.google.process.gapps (com.google.android.gsf.gtalkservice.service.GTalkService)
Active since: 35 s
Last activity: 5 m 43 s
Crash count:0
com.google.android.inputmethod.latin (com.android.inputmethod.latin.LatinIME)
Active since: 19 s
Last activity: 19 s
Crash count:0
android.process.media (com.android.providers.downloads.DownloadService)
Active since: 19 s
Last activity: 35 s
Crash count:0
Tonight goes from 15% down to 12%, much better than yesterday, but in the graphic the line of active is to much time, maybe it is, as you say, a relative % of total, and that is the reason that the line of active it's to long

My wifi has been destroyed twice now. What the bleep! Log here.

can anyone please analyze this for me?
Code:
3C Toolbox (logcat)
======================
D/14:48:26.567 WifiController( 1216)
battery changed pluggedType: 0
D/14:46:44.137 WifiService( 1216)
Client connection lost with reason: 4
D/14:46:43.407 CaptivePortalTracker( 1216)
NoActiveNetworkState not a wifi connectivity change, ignore
D/14:46:40.107 QcConnectivityService( 1216)
Attempting to switch to wifi
D/14:46:40.107 WifiStateMachine( 1216)
handleMessage: X
D/14:46:40.107 WifiStateMachine( 1216)
processMsg: DefaultState
D/14:46:40.107 WifiStateMachine( 1216)
processMsg: InitialState
D/14:46:40.107 WifiStateMachine( 1216)
handleMessage: E msg.what=131146
D/14:46:40.107 WifiStateMachine( 1216)
handleMessage: X
D/14:46:40.107 WifiStateMachine( 1216)
processMsg: DefaultState
D/14:46:40.107 WifiStateMachine( 1216)
processMsg: InitialState
D/14:46:40.107 WifiStateMachine( 1216)
handleMessage: E msg.what=131085
V/14:46:38.537 WifiServiceExtension( 1216)
registerForRSSIThreshold onChange threshold=-100mMobileDataEnable=0
D/14:46:26.257 WifiController( 1216)
battery changed pluggedType: 0
D/14:46:13.497 WifiController( 1216)
battery changed pluggedType: 0
V/14:46:05.707 ActivityManager( 1216)
Moving to DESTROYED: ActivityRecord{4483c310 u0 com.android.settings/.Settings$WifiSettingsActivity t13 f} (removed from history)
V/14:46:05.647 ActivityManager( 1216)
Moving to DESTROYING: ActivityRecord{4483c310 u0 com.android.settings/.Settings$WifiSettingsActivity t13 f} (destroy requested)
W/14:46:05.647 WifiSettings( 1497)
com.android.settings.wifi.WifiSettingsAsActivitysetExpandableNotificationYesButton ,status=0
W/14:46:05.647 WifiSettings( 1497)
onDestroy, activeTutorial:true, wifiSettingsAs:[email protected]
V/14:46:05.637 ActivityManager( 1216)
Moving to FINISHING: ActivityRecord{4483c310 u0 com.android.settings/.Settings$WifiSettingsActivity t13 f}
D/14:46:04.147 kjo ( 1497)
WifiCallingEnabler
V/14:46:03.207 ActivityManager( 1216)
Moving to STOPPING: ActivityRecord{4483c310 u0 com.android.settings/.Settings$WifiSettingsActivity t13 f} (finish requested)
V/14:46:03.207 ActivityManager( 1216)
Moving to PAUSED: ActivityRecord{4483c310 u0 com.android.settings/.Settings$WifiSettingsActivity t13 f} (pause complete)
W/14:46:03.187 WifiSettings( 1497)
com.android.settings.wifi.WifiSettingsAsActivitygetExpandableNotificationIndex() ,mInterHelpIndex=0
D/14:46:03.187 WifiSettings( 1497)
isSupportNSWO() False
D/14:46:03.187 WifiSettings( 1497)
isSupportNSWO() : g3_global_com
V/14:46:03.177 ActivityManager( 1216)
Finishing activity token=Token{44839a88 ActivityRecord{4483c310 u0 com.android.settings/.Settings$WifiSettingsActivity t13}} r=, result=0, data=null, reason=app-request
D/14:46:03.177 ActivityManager( 1216)
allPausedActivitiesComplete: r=ActivityRecord{4483c310 u0 com.android.settings/.Settings$WifiSettingsActivity t13} state=PAUSING
D/14:46:02.977 SplitWindowPolicyService( 1362)
updateActivityStateChanged: resumed=false pkgName=co.....Settings$WifiSettingsActivity, screenId=1, isScreenFull=true, isMinimized=false, topRunningActivity=ActivityInfo{43886848 co.....Settings$WifiSettingsActivity}, taskId=13, activityType=0
V/14:46:02.817 ActivityManager( 1216)
Moving to PAUSING: ActivityRecord{4483c310 u0 com.android.settings/.Settings$WifiSettingsActivity t13}
D/14:46:00.977 kimyow ( 1497)
checkActivity:com.android.settings.Settings$WifiSettingsActivity
D/14:46:00.237 WifiStateMachine( 1216)
handleMessage: X
E/14:46:00.237 WifiStateMachine( 1216)
Failed to load driver
E/14:46:00.237 WifiHW ( 1216)
[wifi_ensure_config_files] Wi-Fi will not be enabled
E/14:46:00.237 WifiHW ( 1216)
wifi_ensure_config_files : failed
E/14:46:00.237 WifiHW ( 1216)
wifi_check_qcom_cfg_files : failed
E/14:46:00.237 WifiUtil( 1216)
Fail to Access [/data/misc/wifi/WCNSS_qcom_cfg.ini]
E/14:46:00.237 WifiUtil( 1216)
Cannot access "/data/misc/wifi/WCNSS_qcom_cfg.ini": Permission denied
E/14:46:00.237 WifiUtil( 1216)
wfc_util_ffile_check_copy(): mode[432] uID[1000] gID[1010]
E/14:46:00.237 WifiUtil( 1216)
wfc_util_ffile_check_copy(): pid[1216] pDestFName[/data/misc/wifi/WCNSS_qcom_cfg.ini] pSourceFName[/system/etc/wifi/WCNSS_qcom_cfg.ini]
D/14:46:00.227 WifiController( 1216)
Mismatch in the state 1
I/14:46:00.227 WifiService( 1216)
setWifiEnabled startWifiDelaySendMsg true
E/14:46:00.227 WifiService( 1216)
Invoking mWifiStateMachine.setWifiEnabled
D/14:46:00.227 WifiService( 1216)
setWifiEnabled: true pid=1497, uid=1000, package= android.uid.system:1000
D/14:46:00.227 WifiStateMachine( 1216)
processMsg: InitialState
D/14:46:00.227 WifiStateMachine( 1216)
handleMessage: E msg.what=131083
D/14:45:59.167 kimyow ( 1497)
checkActivity:com.android.settings.Settings$WifiSettingsActivity
D/14:45:59.157 kimyow ( 1497)
checkActivity:com.android.settings.Settings$WifiSettingsActivity
D/14:45:59.147 WifiSettings( 1497)
Tethering WPS is false
D/14:45:59.147 WifiSettings( 1497)
isSupportNSWO() False
D/14:45:59.147 WifiSettings( 1497)
isSupportNSWO() : g3_global_com
I/14:45:59.117 ActivityManager( 1216)
Timeline: Activity_windows_visible id: ActivityRecord{4483c310 u0 com.android.settings/.Settings$WifiSettingsActivity t13} time:7988109
V/14:45:59.107 WindowStateAnimator( 1216)
performShowLocked: mDrawState=HAS_DRAWN in WindowStateAnimator{44c67408 com.android.settings/com.android.settings.Settings$WifiSettingsActivity}
I/14:45:59.107 ActivityManager( 1216)
Displayed com.android.settings/.Settings$WifiSettingsActivity: +1s469ms
W/14:45:58.187 WifiSettings( 1497)
com.android.settings.wifi.WifiSettings :onResume(): wifiSettingsAs.getExpandableNotificationIndex() = 0, isDialogShowing:false
W/14:45:58.187 WifiSettings( 1497)
com.android.settings.wifi.WifiSettingsAsActivitygetExpandableNotificationIndex() ,mInterHelpIndex=0
W/14:45:58.187 WifiSettings( 1497)
com.android.settings.wifi.WifiSettings :onResume(): wifiSettingsAs.getExpandableNotificationYesButton() = false
W/14:45:58.187 WifiSettings( 1497)
com.android.settings.wifi.WifiSettings, 989, :onResume(): wifiSettingsAs.getExpandableNotificationIndex() = 0
W/14:45:58.187 WifiSettings( 1497)
com.android.settings.wifi.WifiSettingsAsActivitygetExpandableNotificationIndex() ,mInterHelpIndex=0
W/14:45:58.187 WifiSettings( 1497)
com.android.settings.wifi.WifiSettings, 988, :onResume(): wifiSettingsAs.getExpandableNotificationYesButton() = false
W/14:45:58.187 WifiSettings( 1497)
com.android.settings.wifi.WifiSettings :onResume(): , 980, misCalledonCreate:1
D/14:45:58.177 WifiSettings( 1497)
isSupportNSWO() False
D/14:45:58.177 WifiSettings( 1497)
isSupportNSWO() : g3_global_com
W/14:45:58.167 WifiSettings( 1497)
com.android.settings.wifi.WifiSettings :onResume(): , 991, wifi_interactive_help_tips:0
D/14:45:58.167 WifiSettings( 1497)
isSupportNSWO() False
D/14:45:58.167 WifiSettings( 1497)
isSupportNSWO() : g3_global_com
D/14:45:58.127 WifiSettings( 1497)
dip = 4.33, px = 17
D/14:45:58.127 WifiSettings( 1497)
dip = 113.33, px = 453
D/14:45:58.097 WifiP2pService( 1216)
DefaultState{ when=-1ms what=139268 target=com.android.internal.util.StateMachine$SmHandler }
D/14:45:58.097 WifiP2pService( 1216)
P2pDisabledState{ when=-1ms what=139268 target=com.android.internal.util.StateMachine$SmHandler }
D/14:45:58.097 WifiSettings( 1497)
isSetupWizardAvailable : true
D/14:45:58.097 WifiSettings( 1497)
************** wifisettings Model ==== g3g3_global_com
V/14:45:57.747 SplitWindowPolicyService( 1362)
updateScreenStateAndRunningActivity: screenId=1, isFull=true, isMinimized=false, topRunningActivity=ActivityInfo{43f10120 co.....Settings$WifiSettingsActivity}, uid=1000
V/14:45:57.647 ActivityManager( 1216)
Moving to RESUMED: ActivityRecord{4483c310 u0 com.android.settings/.Settings$WifiSettingsActivity t13} (starting new instance)
D/14:45:57.647 SplitWindowPolicyService( 1362)
updateActivityStateChanged: resumed=true pkgName=co.....Settings$WifiSettingsActivity, screenId=1, isScreenFull=true, isMinimized=false, topRunningActivity=ActivityInfo{43f10120 co.....Settings$WifiSettingsActivity}, taskId=13, activityType=0
D/14:45:57.637 ActivityManager( 1216)
resumeTopActivityLocked: Restarting ActivityRecord{4483c310 u0 com.android.settings/.Settings$WifiSettingsActivity t13}
V/14:45:57.347 SplitWindowPolicyService( 1362)
checkScreen => return. sourceIntent is null or not support SplitWindow component: ComponentInfo{co..../co.....Settings$WifiSettingsActivity}
I/14:45:57.337 ActivityManager( 1216)
ActivityRecord{4483c310 u0 com.android.settings/.Settings$WifiSettingsActivity t-1} Support Split:false Is ScreenFull:true
I/14:45:57.327 ActivityManager( 1216)
START u0 {act=android.settings.WIFI_SETTINGS flg=0x14000000 cmp=com.android.settings/.Settings$WifiSettingsActivity} from pid 1338
D/14:45:26.097 WifiController( 1216)
battery changed pluggedType: 0
D/14:45:21.877 WifiService( 1216)
New client listening to asynchronous messages
D/14:44:52.297 WifiController( 1216)
Mismatch in the state 1
I/14:44:52.297 WifiService( 1216)
setWifiEnabled startWifiDelaySendMsg true
E/14:44:52.287 WifiService( 1216)
Invoking mWifiStateMachine.setWifiEnabled
D/14:44:52.287 WifiService( 1216)
setWifiEnabled: true pid=1338, uid=10030, package= android.uid.systemui:10030
D/14:43:25.757 WifiController( 1216)
battery changed pluggedType: 0
D/14:42:25.607 WifiController( 1216)
battery changed pluggedType: 0
D/14:40:20.337 WifiService( 1216)
Client connection lost with reason: 4
D/14:39:25.137 WifiController( 1216)
battery changed pluggedType: 0
D/14:38:45.497 WifiController( 1216)
battery changed pluggedType: 0
D/14:38:24.247 WifiController( 1216)
battery changed pluggedType: 0
D/14:38:24.237 WifiController( 1216)
battery changed pluggedType: 0
D/14:38:23.967 WifiController( 1216)
battery changed pluggedType: 2
D/14:38:23.957 WifiController( 1216)
battery changed pluggedType: 2
D/14:37:08.380 WifiController( 1216)
battery changed pluggedType: 2
D/14:36:45.970 WifiController( 1216)
battery changed pluggedType: 2
Three times. What the damn =(

Categories

Resources