I know this is not really a programming question, but please, if somebody knows the answer... I would be very happy!

Since a few days, my Android phone (HTC Sensation) never goes to sleep anymore. Looking at Android 2.3 settings where you can see the battery details, I can see that the "Active" bar is completely SOLID - I definitely know that it used to be a bar with lots of fragmented smaller bars.

Now: there MUST be an app that prevents the phone to go to sleep. But I cannot find a single answer using plain Google search as to how I can detect the malfunctioning app!!

I am getting crazy, my standby time has been reduced to only a few hours - even in flight mode my battery drains constantly cause there is no sleep time any more!

Does anybody know how to help??

THANKS!

PS: of course I know which system privilege is needed for sleep-prevention, that is not my question! I want to detect EXACTLY which app is causing the trouble, I do not want to try&error uninstall every single app that possibly COULD cause it!

Output of adb shell dumpsys power:

Power Manager State:
  mIsPowered=true mPowerState=0 mScreenOffTime=21856 ms
  mPartialCount=0
  mWakeLockState=
  mUserState=
  mPowerState=
  mLocks.gather=
  mNextTimeout=490366 now=505073 -14s from now
  mDimScreen=true mStayOnConditions=0
  mScreenOffReason=3 mUserState=0
  mBroadcastQueue={-1,-1,-1}
  mBroadcastWhy={0,0,0}
  mPokey=0 mPokeAwakeonSet=false
  mKeyboardVisible=false mUserActivityAllowed=false
  mKeylightDelay=6000 mDimDelay=107000 mScreenOffDelay=7000
  mPreventScreenOn=false  mScreenBrightnessOverride=-1  mButtonBrightnessOverride=-1
  mScreenOffTimeoutSetting=120000 mMaximumScreenOffTimeout=2147483647
  mLastScreenOnTime=0
  mBroadcastWakeLock=UnsynchronizedWakeLock(mFlags=0x1 mCount=0 mHeld=false)
  mStayOnWhilePluggedInScreenDimLock=UnsynchronizedWakeLock(mFlags=0x6 mCount=0 mHeld=false)
  mStayOnWhilePluggedInPartialLock=UnsynchronizedWakeLock(mFlags=0x1 mCount=0 mHeld=false)
  mPreventScreenOnPartialLock=UnsynchronizedWakeLock(mFlags=0x1 mCount=0 mHeld=false)
  mProximityPartialLock=UnsynchronizedWakeLock(mFlags=0x1 mCount=0 mHeld=false)
  mProximityWakeLockCount=0
  mProximitySensorEnabled=false
  mProximitySensorActive=false
  mProximityPendingValue=-1
  mLastProximityEventTime=0
  mLightSensorEnabled=false
  mLightSensorValue=-1.0 mLightSensorPendingValue=-1.0
  mLightSensorScreenBrightness=75 mLightSensorButtonBrightness=255 mLightSensorKeyboardBrightness=0
  mUseSoftwareAutoBrightness=true
  mAutoBrightessEnabled=false
  mScreenBrightness: animating=false targetValue=-1 curValue=0 delta=0

mLocks.size=0:

mPokeLocks.size=0:
link|improve this question

65% accept rate
1  
Do you have adb installed (i.e. the sdk)? In that case, attach the output of adb shell dumpsys power to your question - it lists any active wake locks. – Jens Feb 4 at 16:10
Okay, I attached it! I just rebooted the phone several times... maybe I have a "clean" state now? Where would the locks be? Is it mLocks, where my size currently is 0? – Zordid Feb 4 at 16:19
As far as I can tell, this adb output is the current status. But what if it is an app that releases and gains wake lock over and over again.. I would need a recording of wake locks over time, wouldn't I? – Zordid Feb 4 at 16:26
feedback

1 Answer

Try looking through your installed apps for ones with the System tools (prevent phone frome sleeping) permission. That means the app is using wake locks.

link|improve this answer
lol That's exactly what I DON'T want. Impossible to detect the cause, just several handful of POSSIBLE apps. – Zordid Feb 4 at 16:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.