Google Play services draining battery - AT&T Samsung Galaxy S6

I know this has been asked numerous times but I still can't seem to fix the battery issue with google play.
I've tried the normal tweaks (use battery saving location, clear cache, disable google now, only sync what need to be synced, etc) but does anyone else have any other ideas?
btw I've already disabled VoLTE which helped some (not with google services but general battery)
My SOT is like 30 min today. Other days I've had better battery but it is always after google services and sometimes after android.
I'm stock and non rooted. Any help would be appreciated.

Check themes and apps for my thread and download the latest version. Other than that there isnt much you can do.

SilkyJohnson said:
Check themes and apps for my thread and download the latest version. Other than that there isnt much you can do.
Click to expand...
Click to collapse
I haven't changed the stock theme and I'm running the latest version...
Surely there has to be something I can do. I mean 30 min Screen on time and already at 50% is horrendous

My Google Play Service is sitting at like 3% with over 12 hours off the charger. I turned off Google Now and location history. They'll suck your battery dry if you let them.
Sent from my SM-P600 using Tapatalk

¿Will-it-Blend? said:
My Google Play Service is sitting at like 3% with over 12 hours off the charger. I turned off Google Now and location history. They'll suck your battery dry if you let them.
Sent from my SM-P600 using Tapatalk
Click to expand...
Click to collapse
What does location history do? I've never really understood it.
It doesn't affect location, does it?

I'm having this issue too. It's always in the top 2 apps in battery use. I've tried to keep everything updated, but it's always over 10%, so I have no idea how to fix it.

riahim said:
I haven't changed the stock theme and I'm running the latest version...
Surely there has to be something I can do. I mean 30 min Screen on time and already at 50% is horrendous
Click to expand...
Click to collapse
I meant the latest version of Google Play Services.

riahim said:
What does location history do? I've never really understood it.
It doesn't affect location, does it?
Click to expand...
Click to collapse
In combination with Google now abs other google apps, it keeps track of everywhere you've been to present new information to you (like travel time to places you go to frequently). As you can imagine it polls your location a lot and drains battery. Disabling will not affect location however.
Sent from my SAMSUNG-SM-G920A using Tapatalk

SilkyJohnson said:
I meant the latest version of Google Play Services.
Click to expand...
Click to collapse
How do I check for the latest version? I currently have 7.5.71(1955121-440) which I think is up to date, no?

¿Will-it-Blend? said:
In combination with Google now abs other google apps, it keeps track of everywhere you've been to present new information to you (like travel time to places you go to frequently). As you can imagine it polls your location a lot and drains battery. Disabling will not affect location however.
Sent from my SAMSUNG-SM-G920A using Tapatalk
Click to expand...
Click to collapse
Gotcha. That makes a lot of sense. Thanks.

riahim said:
How do I check for the latest version? I currently have 7.5.71(1955121-440) which I think is up to date, no?
Click to expand...
Click to collapse
Yeah, that's current. Go into your app drawer and open Google settings. Click location history at the bottom of the first screen then turn off. That'll help. Also check advanced WiFi scanning, as Google's "always scanning even when WiFi is off" turned itself back on for me. That'll murk a battery.

Related

NlpWakeLock and NlpCollectorWakeLock Discussion

Firstly, this is not another thread to complain about your horrible battery life due to Google Play Services. I'm tired of those (mostly on Reddit, but some here too. Either way, none of that here ). This is instead to try and find a root cause for it. "It's Google's fault" is not good enough for me, and if you truly care about your battery life it shouldn't be for you either. If all you're after is an easy way out to get your battery life back, then this thread is not for you. We're here to reach a solution where you can get location services and good battery life. I've done if before, on my Galaxy Nexus on 4.3, but it seems that something is wrong in KitKat. Let this be a place where we all dig deeper into this issue, perform tests, gather results, and then share and discuss them. Here's what I've got so far:
The wakelocks that cause this battery drain are NlpWakeLock and NlpCollectorWakeLock. Nlp stands for network location provider. As you may know, Android provides developers with two ways of gathering location information. One is through the GPS_PROVIDER, which uses the GPS, and the other is through NETWORK_PROVIDER, which uses cell towers and WiFi APs to get your position. According to their developer website[1] , NETWORK_PROVIDER uses less battery, is faster, but is less accurate. GPS uses more battery, takes longer, but is good if you want an accurate location. I'm assuming this particular wakelock uses NETWORK_PROVIDER.
I also did some digging using ROM Toolbox Pro's autostart manager. My guess was that Google Play Services must be triggered every time a certain intent is broadcasted, since nothing obvious is telling it to run. Turns out there are quite a few. 30, to be exact. However, many of them have to do with GCM and we don't really care about those. One of particular interest is one called com.google.android.location.internal.NlpNetworkProviderSettingsUpdateReceiver. It listens for the intent android.location.PROVIDERS_CHANGED. The LocationManager API's documentation[2] tells us this:
Broadcast intent action when the configured location providers change. For use with isProviderEnabled(String). If you're interacting with the LOCATION_MODE API, use MODE_CHANGED_ACTION instead.
Click to expand...
Click to collapse
I'd assume that this means when you change your location providers, such as enabling/disabling data, WiFi, GPS, etc.
However, location reporting only seems to use network location. If you're on KitKat, go to the location settings and choose device only. Then choose battery saving. It asks you to accept location reporting. Same thing when you choose high accuracy. What do both of those have in common? Network location. You can switch between those two as much as you want and it won't ask you to accept again. However, once you switch to device only and back it will ask you. This shows that it only uses network location.
I find that Google (Play) Services has 5% (+/- 1%) keep awake. Tested on both Nexus 5 running KRT16M and Galaxy Nexus running JWR66V. Both use a certain time of GPS, although that number is never increasing. I assume this is some sort of initial one-time lock. It can be disregarded.
One more thing I noticed is that this Google Play Services issue is much more prominent on KitKat. While they have happened before, often times a simple Play Store update would fix it. This time it seems to be location based. Guess what changed in KitKat? The way you deal with location settings. It may be that the way location settings are grouped in KitKat cause that intent to keep firing, and that in turn triggers something that eventually ends up being what you see as NlpWakeLock.
What I'm going to try next is disabling that intent receiver and then monitor that wakelock as well as if location reporting still works. Feel free to play around, and be sure to share your results.
To those who are suffering from these wakelocks, could you please share your settings? Such as what type of location mode you have (high accuracy, battery saving, device only), WiFi on or off, data on or off, signal strength, WiFi always scanning, Play Store and Play Services version, what device you have, Android build number, and what ROM/kernel you're using if you are using one? Any other info such as screenshots of battery screen, betterbatterystats, wakelock detectors, etc. will all be welcomed.
Here is the Reddit thread I created discussing the same issue: http://www.reddit.com/r/Android/comments/1rvmlr/nlpwakelock_and_nlpcollectorwakelock_discussion/
I don't have this device, nor do I know if I'll be getting it, but I must say that I applaud your method.
Bravo!
I just turn location reporting off then select 'battery saving' setting & accept the request for reporting when it pops up. This allows you to use network location without logging. Google now & maps work fine although not quite as accurate. I just turn on gps if i need navigation. Never get more than 2% usage from play services & it's giving me a total kept awake time of about 28mins out of 12hrs of use with 3hrs screen on time.
Sent from my Nexus 5 using Tapatalk
If I disable the wifi and 3g, leave my phone on battery saving location, google location set to on, it is using wifi always scanning only and it didnt consume 1% battery in a whole night
stumpy352 said:
I just turn location reporting off then select 'battery saving' setting & accept the request for reporting when it pops up. This allows you to use network location without logging. Google now & maps work fine although not quite as accurate. I just turn on gps if i need navigation. Never get more than 2% usage from play services & it's giving me a total kept awake time of about 28mins out of 12hrs of use with 3hrs screen on time.
Sent from my Nexus 5 using Tapatalk
Click to expand...
Click to collapse
That is working for me right now.
Sent from my Nexus 5 using Tapatalk 2
ickboblikescheese said:
To those who are suffering from these wakelocks, could you please share your settings? Such as what type of location mode you have (high accuracy, battery saving, device only), WiFi on or off, data on or off, signal strength, WiFi always scanning, Play Store and Play Services version, what device you have, Android build number, and what ROM/kernel you're using if you are using one? Any other info such as screenshots of battery screen, betterbatterystats, wakelock detectors, etc. will all be welcomed.
Click to expand...
Click to collapse
I am experiencing this issue on my Nexus 5, as confirmed by betterbatterystats (NlpCollectorWakelock 5.5% awake time)
ROM: CyanogenMod 11 alpha
Build Number: KRT16S
Location Mode: High accuracy
Location Reporting: Off
WiFi On: Sometimes
Play Store Version: 4.4.22
Play Services Version: 4.0.34
This issue first appeared for me the other day. I noticed that my device was not appearing in the online Android Device Manager, nor the desktop version of the Play Store. To fix the ADM issue, I disabled remote wipe, cleared data for Play Services, reenabled remote wipe, and rebooted. To fix my device not appearing in the Play Store, I cleared data for the Play Store app. Both issues were thereafter resolved, but now I am experiencing the Network Location battery drain.
Is it possible the problem is related to requests from Android Device Manager? I was under the impression that location for that purpose was 'on demand' instead of logged, but what do I know.
Thanks for doing this! Others, please feel free to use my comment as a template, and post your own data.
So I was playing around with autostart, and I accidentally caused a bunch of FCs for Play Services. Ended up freezing/defrosting and then uninstalling updates then let it update itself, and I noticed this (may or may not have anything to do with what I did): Even though it wakelocks, it barely uses up any batter. I was in an area of 2-3 bar HSPA+, with sync on, location reporting on at high accuracy, etc. and it drained 1% per hour. Still kept phone awake ~5% of the time, but battery usage was significantly better over what I recorded to be 4.8%/hour from last Friday.
EDIT: The only other change I can think of making is temporarily freezing Cerberus. I'll have to look more into that. However, check which apps are requesting your location. The new location settings in KitKat make this simple enough. For me it's only Google Now and Google Play Services, and whatever app that happens to require GPS such as camera (geotagging) and maps.
ickboblikescheese said:
So I was playing around with autostart, and I accidentally caused a bunch of FCs for Play Services. Ended up freezing/defrosting and then uninstalling updates then let it update itself, and I noticed this (may or may not have anything to do with what I did): Even though it wakelocks, it barely uses up any batter. I was in an area of 2-3 bar HSPA+, with sync on, location reporting on at high accuracy, etc. and it drained 1% per hour. Still kept phone awake ~5% of the time, but battery usage was significantly better over what I recorded to be 4.8%/hour from last Friday.
Click to expand...
Click to collapse
So, how should I replicate this? I'm using the Xposed Module that dev posted in your Reddit post.
stumpy352 said:
I just turn location reporting off then select 'battery saving' setting & accept the request for reporting when it pops up. This allows you to use network location without logging. Google now & maps work fine although not quite as accurate. I just turn on gps if i need navigation. Never get more than 2% usage from play services & it's giving me a total kept awake time of about 28mins out of 12hrs of use with 3hrs screen on time.
Sent from my Nexus 5 using Tapatalk
Click to expand...
Click to collapse
How do you do this exactly? If I turn location reporting off, then I can't select the battery saving method because it's greyed out. This also causes location based cards to stop working on Google Now and Maps can't locate me either.
---------- Post added at 11:24 PM ---------- Previous post was at 11:19 PM ----------
natezire71 said:
So, how should I replicate this? I'm using the Xposed Module that dev posted in your Reddit post.
Click to expand...
Click to collapse
Use Titanium Backup to FIRST backup Google Play Services. Then use it to uninstall GooglePlay Services. Then open Google Now or Maps, they will ask you install Google Play Services and take you to the app store.
If anything goes wrong, use Titanium to restore.
You need location toggled on. Go down to location services & click on Google Location Reporting. Select off for both settings. Then go back out & select battery saving mode & accept the terms.
Sent from my Nexus 5 using Tapatalk
stumpy352 said:
You need location toggled on. Go down to location services & click on Google Location Reporting. Select off for both settings. Then go back out & select battery saving mode & accept the terms.
Sent from my Nexus 5 using Tapatalk
Click to expand...
Click to collapse
Turns out that's exactly how I had set up after all, doh! Thank you.
I have actually been getting really decent battery life, noticeably better than my HTC One, with exactly similar usage patterns and same apps installed etc.
Also, Play Services is not the only app that uses this NlpWakeLock. Facebook also uses it & in my case has the highest time kept awake. I turned off location in chat & noticed that it is much better.
Sent from my Nexus 5 using Tapatalk
That's what I thought too. That could explain why some people have this issue more than others.
Sent from my Nexus 5
ickboblikescheese said:
That's what I thought too. That could explain why some people have this issue more than others.
Sent from my Nexus 5
Click to expand...
Click to collapse
Have you tried the Xposed module that filters wake locks? I've been using it and the NLP counts have drastically dropped
No, not using xposed. I understand that wake locks must occur for accurate location services (otherwise what is doing the reporting). What shouldn't be there is the incredible battery drain. Wake locks don't necessarily mean battery drain. You could have a 1h wake lock and drain 1% battery, or a 5 min wake lock that keeps CPU on high frequency causing a 10% battery drain. I don't mind wake locks as long as battery isn't affected too much.
Sent from my Nexus 5
ickboblikescheese said:
No, not using xposed. I understand that wake locks must occur for accurate location services (otherwise what is doing the reporting). What shouldn't be there is the incredible battery drain. Wake locks don't necessarily mean battery drain. You could have a 1h wake lock and drain 1% battery, or a 5 min wake lock that keeps CPU on high frequency causing a 10% battery drain. I don't mind wake locks as long as battery isn't affected too much.
Sent from my Nexus 5
Click to expand...
Click to collapse
That was the point of this module. https://play.google.com/store/apps/details?id=in.andro.wlt. Take a look and read the description. From my understanding, the location stuff still works--which for me has been the case. However, it stops the unnecessary wakelocks. I would like to believe my battery has improved.
Nice thread!!
I've changed my location settings and I'll report if it works!!!
Thanks!!!
natezire71 said:
That was the point of this module. https://play.google.com/store/apps/details?id=in.andro.wlt. Take a look and read the description. From my understanding, the location stuff still works--which for me has been the case. However, it stops the unnecessary wakelocks. I would like to believe my battery has improved.
Click to expand...
Click to collapse
Please keep us posted on this works out for you, it looks really promising!
the7thson said:
Please keep us posted on this works out for you, it looks really promising!
Click to expand...
Click to collapse
I think it's working.
natezire71 said:
I think it's working.
Click to expand...
Click to collapse
Can you tell us which apps you disabled wake locks for?
Sent from my Nexus 7 using Tapatalk 4

Battery discharges very quickly

Hi!
I've been using since January OmniRomm and am very satisfied.
Silk recently, my battery will discharge very quickly. The cause is obvious Google+.
Does anyone have the same problem and can help me maybe.
Thanks.
JenMei said:
Hi!
I've been using since January OmniRomm and am very satisfied.
Silk recently, my battery will discharge very quickly. The cause is obvious Google+.
Does anyone have the same problem and can help me maybe.
Thanks.
Click to expand...
Click to collapse
For me a tool that controls the connectivity usage did the trick.
I put that one:
https://play.google.com/store/apps/details?id=com.latedroid.ultimatejuice&hl=en
It extended the battery time twice for me. You can also search for alternatives of the kind in google play store.
Cheers
JenMei said:
Hi!
I've been using since January OmniRomm and am very satisfied.
Silk recently, my battery will discharge very quickly. The cause is obvious Google+.
Does anyone have the same problem and can help me maybe.
Thanks.
Click to expand...
Click to collapse
G+ is a data hog. Even if you disable notifications it eats data. Disable background data in Settings->Data Usage
Entropy512 said:
G+ is a data hog. Even if you disable notifications it eats data. Disable background data in Settings->Data Usage
Click to expand...
Click to collapse
Thank you. I will test it.
JenMei said:
Hi!
I've been using since January OmniRomm and am very satisfied.
Silk recently, my battery will discharge very quickly. The cause is obvious Google+.
Does anyone have the same problem and can help me maybe.
Thanks.
Click to expand...
Click to collapse
Hey! I have the same problem but haven't found a solution yet neither. I might be true that G+ is a data hog, but this generalization can't be the reason for this clearly newly occuring fingerprint_scanner_local wakelock that keeps my i9100 firing away at maximum clock speed for the whole time. Uninstalled for now and I haven't been lucky at finding something in the better battery stats thread.
Sent from my SM-T700 using XDA Premium 4 mobile app
If you don't use it, you can easy unistall with Titanium Backup or similar app
andrea90 said:
If you don't use it, you can easy unistall with Titanium Backup or similar app
Click to expand...
Click to collapse
Yea I got fed up with google + turning sync on after I would turn it off, it would toggle back on, so I uninstalled it fully.
ryancell said:
Yea I got fed up with google + turning sync on after I would turn it off, it would toggle back on, so I uninstalled it fully.
Click to expand...
Click to collapse
Nice work, I've already done since months

Battery life Moto X 2014

Trying to get the most out of the battery. Tried turning as much as I could off. Any suggestions for optimal settings while not cutting all the good out. Currently running 5.1 pure. Rooted greenify everything that says running NFC off BT off location set battery saving. Google now cards off. Still getting extremely high Google services percent. Phone currently at 30%
Also under security and apps with usage access what is this MotoCarelnt.
What SOT are you getting?
OK here is today's still at 64% but barely used the phone and google services still seems high considering I've tried to basically disable everything possible. Also SOT yesterday was about 2hrs.
Sent from my XT1095 using XDA Free mobile app
Here's today's still getting high Google services
Is it just normal or what
I having the same issue. battery draining like mad since I installed 5.1 leak rom. I'm on pure version, not rooted.
Post pics of battery info is your Google services really high
Sent from my XT1095 using XDA Free mobile app
I've been having the same issue the past couple weeks. Phone seems to be staying awake (reported under Android OS). I've tried uninstalling a bunch of apps, turning off BT and location services, etc. Doesn't seem to be doing any good. I used to go to bed with about 50% battery. Now I'm lucky if I have 10% left. Maybe 2 hrs SOT with 50% brightness.
Ok I found this from another thread from another site but I think this might finally be fixed. So go settings->app->all-> then scroll down to google play services. Select uninstall updates and then clear dalvik cache and regular cache and bam! Google services no longer killing battery. Also turn off all the location reporting from Google and anything else you can find and turn off syncing that isn't needed. 2hrs sot at 69% not too bad and also turn LTE preferred to H+ still plenty fast and saves more battery.
so here's the stats after these settings
Definitely better but Google services seem to come creeping back later in the day.(which was said may happen). SOT still pretty dam good but will be interesting to see tomorrow. Obviously there's some little bug going on but I can live with it. Maybe one day someone will actually figure it out. Still an awesome phone. 5hrs SOT at 10% can't complain to much but would be nice to get through a day
I have exactly the same problem! But this didn't happen before. As you can see on my screen. Everything was OK, than I used my phone for a little while and from that point it started draining the battery like crazy. And I din't touch it most of the time! ...
matt1515 said:
Ok I found this from another thread from another site but I think this might finally be fixed. So go settings->app->all-> then scroll down to google play services. Select uninstall updates and then clear dalvik cache and regular cache and bam! Google services no longer killing battery. Also turn off all the location reporting from Google and anything else you can find and turn off syncing that isn't needed. 2hrs sot at 69% not too bad and also turn LTE preferred to H+ still plenty fast and saves more battery.
Click to expand...
Click to collapse
gonna try this method, its seems a real improvement.
and I have a question, does playing music from a usb otg drain battery?
How do you clear cache and dalvik on unrooted moto x
pagep said:
I have exactly the same problem! But this didn't happen before. As you can see on my screen. Everything was OK, than I used my phone for a little while and from that point it started draining the battery like crazy. And I din't touch it most of the time! ...
Click to expand...
Click to collapse
I have also noticed that this insane battery drain happens only when I have gps enabled.
justpastfinish said:
How do you clear cache and dalvik on unrooted moto x
Click to expand...
Click to collapse
https://motorola-global-portal.cust...prod_answer_detail/a_id/101078/p/30,6720,9197
glarepate said:
https://motorola-global-portal.cust...prod_answer_detail/a_id/101078/p/30,6720,9197
Click to expand...
Click to collapse
Thanks
matt1515 said:
Ok I found this from another thread from another site but I think this might finally be fixed. So go settings->app->all-> then scroll down to google play services. Select uninstall updates and then clear dalvik cache and regular cache and bam! Google services no longer killing battery. Also turn off all the location reporting from Google and anything else you can find and turn off syncing that isn't needed. 2hrs sot at 69% not too bad and also turn LTE preferred to H+ still plenty fast and saves more battery.
Click to expand...
Click to collapse
Hey did you update google services after this? Or you are using old version?

Google play services battery drain

Is this normal battery drain for Google play services? It seems a bit high to me. I have turned off some of the syncing for my accounts and location is off.
Kelari said:
Is this normal battery drain for Google play services? It seems a bit high to me. I have turned off some of the syncing for my accounts and location is off.
Click to expand...
Click to collapse
I have the same problem (ww firmware), the usage seems to be very high even if Google Play Services is known to be draining battery. Even if I disabled GPS usage related to some of my apps, the problem seems to be somewhere else. Will try with Better Battery Stats to see if I can find the culprit.
albireox said:
I have the same problem (ww firmware), the usage seems to be very high even if Google Play Services is known to be draining battery. Even if I disabled GPS usage related to some of my apps, the problem seems to be somewhere else. Will try with Better Battery Stats to see if I can find the culprit.
Click to expand...
Click to collapse
Yeah I'm on ww firmware as well. Please let me know if you find anything.
same problem here since yesterday tried everything but nothing works.
Kelari said:
Is this normal battery drain for Google play services? It seems a bit high to me. I have turned off some of the syncing for my accounts and location is off.
Click to expand...
Click to collapse
After last update i face this issue.
suganesan said:
After last update i face this issue.
Click to expand...
Click to collapse
Yeah mine looks even worse now....
Mine is only 3%
Kelari said:
Is this normal battery drain for Google play services? It seems a bit high to me. I have turned off some of the syncing for my accounts and location is off.
Click to expand...
Click to collapse
After i disable location service it came back to normal. I download movie and watch full movie. My battery drains 15% only. The culprit is gps. I hope it will help you guys
suganesan said:
After i disable location service it came back to normal. I download movie and watch full movie. My battery drains 15% only. The culprit is gps. I hope it will help you guys
Click to expand...
Click to collapse
Well it is already off and has been for the entire time of that picture. It must be something else but no idea what.
Kelari said:
Well it is already off and has been for the entire time of that picture. It must be something else but no idea what.
Click to expand...
Click to collapse
No my friend i can clearly say gps is the problem. Now you see my screenshot. I send movie to my friend through xender, that time i enable gps because xender asked permission. So that I enabled it, and forget to disable. Again it drains my battery around 20%
If you are rooted you might try GMS Doze Magisk module.
For me it has recently changed, it's the Google play store, not even play services which is causing the battery drain. I did not even use the play store or update apps or anything like that.
i got rid of it by clearing data and cache of google play services.
Yes that might be the problem for you. I'm certain that's not the case for me. Today I have over 50% battery drain from Google play services and GPS has been turned off the entire time.
Any update about this issues?

Question Google play services is at it again

Hi all,
Is anyone facing an issue with google play services draining the battery...I get so angry when I see that damn app draining my battery...the battery stats says it's running in the background...why, I don't know! It's recent phenomenon and has been running since the past 20hrs or so...how do I solve this? I'm not sure cleaning the data/ cache would be ideal as this would only lead to more drain since play services will try to download all the info that it has previously....any help will be greatly appreciated!
So 1% battery loss from a system service running for 20 hours in the background is a big problem...?
I'm a bit confused here...
NippleSauce said:
So 1% battery loss from a system service running for 20 hours in the background is a big problem...?
I'm a bit confused here...
Click to expand...
Click to collapse
Actually, it's a bit more than 1%...more like 23% over the past 6 days or so...here's the screenshot...I don't know if this apt battery usage or if google play services need to be given a knock on its head...
amirage said:
Actually, it's a bit more than 1%...more like 23% over the past 6 days or so...here's the screenshot...I don't know if this apt battery usage or if google play services need to be given a knock on its head...
Click to expand...
Click to collapse
Ah, so 0.16% battery per hour. So a bit more than normal. What version of the phone do you have (which processor) and what apps do you have installed that weren't listed?
Also, how do you keep charging your phone so slightly as shown in the picture?
Oh yes, GPlayS will eat up the battery...
Download Karma Firewall and block Google Play Services. It may be shown by it's UID, on my 10+ it's 10044.
You can unblock it as needed like for Gmail or Playstore (block Playstore as well*).
Block Android Services as well, UID 1000.
It's pretty useless but polls the internet 2 times every minute, GPlayS is 4 times a minute.
On Pie Karma's logging feature works so I can see what each apk is doing or not... Q and up sucks.
*disable if you have a package blocker except when needed. A reboot is required and GPS must be unblocked too for Playstore.
Clear Google Play Services, Backup Transport and Framework data as well. Best to disable the latter two. Someone told the latter two aren't present in Q... I can't verify that either way.
NippleSauce said:
Ah, so 0.15972% battery per hour. So a bit more than normal. What version of the phone do you have and what apps do you have installed that weren't listed?
Also, how do you keep charging your phone so slightly as shown in the picture?
Click to expand...
Click to collapse
Hi, I have the 21Ultra 12/256. The funny thing is that play services started acting up only lately...I have been using the phone for 1 week+ and this app starting going berserk just 20 hours ago! It's very likely a rogue update could have caused this issue and I'm sure if I uninstall the update all should be fine...let me do that and see how it performs...
amirage said:
Hi, I have the 21Ultra 12/256. The funny thing is that play services started acting up only lately...I have been using the phone for 1 week+ and this app starting going berserk just 20 hours ago! It's very likely a rogue update could have caused this issue and I'm sure if I uninstall the update all should be fine...let me do that and see how it performs...
Click to expand...
Click to collapse
My AT&T Note 10+ did the same thing and it wasn't an update that triggered it.
Power management was part of the problem.
I run now with all power management disabled except for fast charging and Optimized screen/cpu setting.
When I turn this phone off it goes into deep sleep...
blackhawk said:
My AT&T Note 10+ did the same thing and it wasn't an update that triggered it.
Power management was part of the problem.
I run now with all power management disabled except for fast charging and Optimized screen/cpu setting.
When I turn this phone off it goes into deep sleep...
Click to expand...
Click to collapse
Power management, you refer to the ones that show in the battery settings right? But I don't know how the battery power management settings relate to google play services drain...I have betterbatterystats and it shows that google play is the top most draining app...why I can't understand...
I have a feeling it's the feb update that's messing with the battery settings..Jan update was cool...is there a way to roll back to update before AUB6?
Here's an update...I uninstalled the updates to google play services and cleared the cache. Rebooted...and all's going well so far.

			
				
Definitely try out the suggestions made by @destz0r in the video that he left. I guess that I don't ever experience the same problem as I always leave location services disabled unless I'm directly using them for navigation. But I never would've guessed that GPS occasionally leads to more GPlay Service specific battery consumption (as I had thought that GPlay Services were primarily for inner-Google app data communication)...
NippleSauce said:
Definitely try out the suggestions made by @destz0r in the video that he left. I guess that I don't ever experience the same problem as I always leave location services disabled unless I'm directly using them for navigation. But I never would've guessed that GPS occasionally leads to more GPlay Service specific battery consumption (as I had thought that GPlay Services were primarily for inner-Google app data communication)...
Click to expand...
Click to collapse
I already had all those suggestions in place right at the time of setting up the device initially..but yes, uninstalling the play services update cleared the issue...for the moment...
amirage said:
Power management, you refer to the ones that show in the battery settings right? But I don't know how the battery power management settings relate to google play services drain...I have betterbatterystats and it shows that google play is the top most draining app...why I can't understand...
Click to expand...
Click to collapse
Power management seems to create conflicts after a few days running. GooglePS includes Backup Transport and Framework. Even when turned off they continue to run in the background on my device.
Play with it, see what you find but don't ignore and let this trashware toast your battery.

Categories

Resources