[MOD] [ROM & Google Play Services] [v7.3.29] SystemUpdateService Wakelock Fix - ONE Themes and Apps

Since this issue seems to affecting a lot of people, I decided to post what I use to fix the issue. Basically what this mod does is remove the command that acquires the wakelock, so it never exist.
Note: If the app updates itself, the wakelock will be back(unless Google fixes it), so I will try to keep this up to date with the latest version until it's not needed anymore.
To install, flash the zip in recovery
Modded Google Play Services
xx0 versions are for all DPIs, so it covers xx2, xx4, xx6 & xx8 in 1 file
KitKat v7.3.29(030) - All DPI - armeabi-v7a - Older Android versions that don't have the system/priv-app folder, you can rename the priv-app folder in the zip to app
md5 - 8bfac34b48a5cd05773ac85c714927c2
Lollipop v7.3.29(430) - All DPI - armeabi-v7a
md5 - ddf795c287546d3545fab2a3140654ea
Lollipop v7.3.29(438) - 480 DPI - armeabi-v7a
md5 - 8627599d7dd12e5b850fc3b41f41f54a
Lollipop v7.3.29(440) - All DPI - arm64-v8a - Being worked on
md5 -
Modded Framework
This fixes the root cause of the issue, so the service will operate properly now. The modded Google Play Services versions are not needed with this
Be sure to enable the SystemUpdateService for Google Play Services & Google Services Framework if you use DisableService or similar app
YNG1TAS0YL
Instructions for Modifying Framework
Decompile framework-res.apk and modify values/array.xml
Before - If you don't see this code, then your ROM is not the cause of this wakelock
Code:
<string-array name="config_disabledComponents">
<item>com.google.android.gsf/com.google.android.gsf.update.SystemUpdateActivity</item>
<item>com.google.android.gsf/com.google.android.gsf.update.SystemUpdateService</item>
<item>com.google.android.gsf/com.google.android.gsf.update.SystemUpdateService$Receiver</item>
<item>com.google.android.gms/com.google.android.gms.update.SystemUpdateActivity</item>
<item>com.google.android.gms/com.google.android.gms.update.SystemUpdateService</item>
<item>com.google.android.gms/com.google.android.gms.update.SystemUpdateService$Receiver</item>
<item>com.google.android.gms/com.google.android.gms.update.SystemUpdateService$ActiveReceiver</item>
</string-array>
After
Code:
<string-array name="config_disabledComponents">
<item>com.google.android.gsf/com.google.android.gsf.update.SystemUpdateActivity</item>
<item>com.google.android.gsf/com.google.android.gsf.update.SystemUpdateService$Receiver</item>
<item>com.google.android.gsf/com.google.android.gsf.update.SystemUpdateService$SecretCodeReceiver</item>
<item>com.google.android.gms/com.google.android.gms.update.SystemUpdateActivity</item>
<item>com.google.android.gms/com.google.android.gms.update.SystemUpdateService$Receiver</item>
<item>com.google.android.gms/com.google.android.gms.update.SystemUpdateService$ActiveReceiver</item>
<item>com.google.android.gms/com.google.android.gms.update.SystemUpdateService$SecretCodeReceiver</item>
</string-array>

Calkulin said:
Since this issue seems to affecting a lot of people, I decided to post what I use to fix the issue. If the app updates itself, the wake lock will be back(unless Google fixes it), so I will try to keep this up to date with the latest version until it's not needed anymore.
To install, flash the zip in recovery
Click to expand...
Click to collapse
Finally...thanks a lot..this is much needed..:thumbup:
Sent from my A0001 using xda app-developers app

Thank you very much Calkulin, really appreciate your work

thank you calkulin. great job Boricua!!

Thank you Calkulin, waiting for your CM12S root version!

Thank you Calkulin
nigol

Calkulin said:
Since this issue seems to affecting a lot of people, I decided to post what I use to fix the issue. If the app updates itself, the wake lock will be back(unless Google fixes it), so I will try to keep this up to date with the latest version until it's not needed anymore.
To install, flash the zip in recovery
Click to expand...
Click to collapse
Might be forced to give this a try since nothing else is working lol. What changes did you make?

Can you please provide the checksums?
getapatalked mit Android 5.1

Thank you @Calkulin.
Sent from my GT-I9300 using XDA Free mobile app

which wakelock does this fix, the NextAlarmTracker wakelock?

Calkulin said:
Since this issue seems to affecting a lot of people, I decided to post what I use to fix the issue. If the app updates itself, the wake lock will be back(unless Google fixes it), so I will try to keep this up to date with the latest version until it's not needed anymore.
To install, flash the zip in recovery
Click to expand...
Click to collapse
This is very nice. Would it be possible to elaborate what this actually does?
Same as the "DisableService" solution to prevent 'SystemUpdateService' ??
I'm just curious

Instant results?
Hey man.
For starters thanks a lot for your help! I was wondering if the results are instant or does it take a while to check the difference? Because after I flashed the .zip and booted the phone I went to check the battery status and the Google Services were still taking 66% of the my battery life. Is that normal?
Thanks in advance!

CarlosMBM said:
Hey man.
For starters thanks a lot for your help! I was wondering if the results are instant or does it take a while to check the difference? Because after I flashed the .zip and booted the phone I went to check the battery status and the Google Services were still taking 66% of the my battery life. Is that normal?
Thanks in advance!
Click to expand...
Click to collapse
that doesn't mean that it is still "taking" 66%. It is saying that the service has used that percentage of the total used amount so far. the change will be "instant" but the usage counts will still show that until they reset.

doesnt fix the NextAlarmTracker wakelock for me

jase33 said:
that doesn't mean that it is still "taking" 66%. It is saying that the service has used that percentage of the total used amount so far. the change will be "instant" but the usage counts will still show that until they reset.
Click to expand...
Click to collapse
And just curious, do you know when will they reset? Because so far I haven't noticed any difference :/ Thanks in advance mate!

Great, deep sleep fixed to me! Thank you so much

nhshah7 said:
Might be forced to give this a try since nothing else is working lol. What changes did you make?
Click to expand...
Click to collapse
It basically doesn't acquire the wake lock, so it never exist
Tylonhh said:
Can you please provide the checksums?
getapatalked mit Android 5.1
Click to expand...
Click to collapse
I'll put them up shortly
nuwan32 said:
which wakelock does this fix, the NextAlarmTracker wakelock?
Click to expand...
Click to collapse
SystemUpdateService but my phone doesn't have the NextAlarmTracker wake lock, so I can look into that one also and add it
Larsush said:
This is very nice. Would it be possible to elaborate what this actually does?
Same as the "DisableService" solution to prevent 'SystemUpdateService' ??
I'm just curious
Click to expand...
Click to collapse
Like I said, it just doesn't acquire the wake lock, so it doesn't exist

Calkulin said:
It basically doesn't acquire the wake lock, so it never exist
I'll put them up shortly
SystemUpdateService but my phone doesn't have the NextAlarmTracker wake lock, so I can look into that one also and add it
Like I said, it just doesn't acquire the wake lock, so it doesn't exist
I'll try to find it and remove that one also
Click to expand...
Click to collapse
thank you! i dont know if it is related to playstore though. some people are saying its calendar related, others are saying its clock, but nobody is sure.

Thank you @Calkulin!
RCT1 said:
Thank you Calkulin, waiting for your CM12S root version!
Click to expand...
Click to collapse
As always, waiting for you too...

nuwan32 said:
thank you! i dont know if it is related to playstore though. some people are saying its calendar related, others are saying its clock, but nobody is sure.
Click to expand...
Click to collapse
I just looked and could not find it anywhere in Play Services, so is that the exact name of what's showing? Do you have screenshot in BetterBatteryStats?
néonaloj said:
Thank you @Calkulin!
As always, waiting for you too...
Click to expand...
Click to collapse
Is there an OTA zip out that I don't know about yet??

Related

[rom share][KK] Liquid Kitkat for Atrix HD MB886

I found this rom on line and I took no credit to this rom. All right belong to its developers and flash at your own risk.
You could find the link here.
Update: new links here:
http://liquidsmooth.net/?page_id=12
Go to " LiquidSmooth KK 3.0 - NIGHTLY", then select "Moto_msm8960dt"
Following is old link
http://www.drdevs.com/devs/?dir=teamliquid/official/Test
Note: I am just an user for the rom and know nothing about development. There are some FC in this rom according to some users. Flash this rom if you are fully aware of that.
This is a better link
http://www.drdevs.com/devs/teamliquid/official/Test/
TecknoFreak said:
This is a better link
http://www.drdevs.com/devs/teamliquid/official/Test/
Click to expand...
Click to collapse
You are fast, dude!
For those who also want to try, you might need 4.4.2 gapps from BaNK's theat: http://forum.xda-developers.com/showthread.php?t=2012857
or direct link here: http://www.androidfilehost.com/?a=show&w=files&flid=10306
Just installed and love it so far battery seems decent so far on my stock battery, settings are amazing, kind of like the ose interface but two flaws that I have to report in the 3.1.0 version there is a wifi bluetooth gps and sound toggle in my notifications that I can't figure out how to get rid of and the last and probably biggest flaw is when charging the phone goes crazy . lol I put in my charger and the sytemui freezes and disappears and brings me back to the lockscreen and repeats until I take it out.... Lol still charges but I'm going to reflash and see if it helps any or just flash the 3.0 version and see if there's a difference. Excellent find bro.
i just installed this and so far i like it. so far the only problem i encounter is i cant input the ATN. anyone has the same problem?
Sent from my MB886 using XDA Premium 4 mobile app
laofan said:
You are fast, dude!
For those who also want to try, you might need 4.4.2 gapps from BaNK's theat: http://forum.xda-developers.com/showthread.php?t=2012857
or direct link here: http://www.androidfilehost.com/?a=show&w=files&flid=10306
Click to expand...
Click to collapse
Lol yeah because i been testing this since before it was officially build for mb886. Lol
Also is about the same as Validus since come from same developers with the exemption of having theme manager from cyanogen.
Has anyone figured out how to remove this annoying notification toggle on this rom? Any help?
No is build to it. Lol
TecknoFreak said:
No is build to it. Lol
Click to expand...
Click to collapse
Seriously? The notification toggles kind of defeat the purpose when you have quick settings. I think there might be a way to modify the sytemui with apktoolsapktools or something because it gets really annoying especially since the quick pull down on this rom actually works there's no need for it. I'm going to look for a fix.
very very buggy/broken.
going into APN menu causes phone to crash
sound->volumes causes crash
many random force closes, etc.
on the other hand it is incredibly smooth.
centipedes said:
very very buggy/broken.
going into APN menu causes phone to crash
sound->volumes causes crash
many random force closes, etc.
on the other hand it is incredibly smooth.
Click to expand...
Click to collapse
Seems like you did a dirty flash or forget to wipe cache/davik.
Maybe try clean install again?
So far my only issue is FC in liquid wallpapers.
laofan said:
Seems like you did a dirty flash or forget to wipe cache/davik.
Maybe try clean install again?
So far my only issue is FC in liquid wallpapers.
Click to expand...
Click to collapse
no i didn't
centipedes said:
no i didn't
Click to expand...
Click to collapse
Yea, I had lots of issues with it as well. I really want to try it for an extended period, but with the FCs on adding an apn I have to wait and hope it gets an update. Really like the customizations available but without me being able to get data plan and mms I am not comfortable testing it more than an hour or two at home. So back to ProBam for the time being.
Black_halo said:
Seriously? The notification toggles kind of defeat the purpose when you have quick settings. I think there might be a way to modify the sytemui with apktoolsapktools or something because it gets really annoying especially since the quick pull down on this rom actually works there's no need for it. I'm going to look for a fix.
Click to expand...
Click to collapse
At first I thought this was the quickbar enabled via developer and thought we could just disable it. But no, it's "another" one besides that one..
centipedes said:
very very buggy/broken.
going into APN menu causes phone to crash
sound->volumes causes crash
many random force closes, etc.
on the other hand it is incredibly smooth.
Click to expand...
Click to collapse
laofan said:
Seems like you did a dirty flash or forget to wipe cache/davik.
Maybe try clean install again?
So far my only issue is FC in liquid wallpapers.
Click to expand...
Click to collapse
idontkn1 said:
Yea, I had lots of issues with it as well. I really want to try it for an extended period, but with the FCs on adding an apn I have to wait and hope it gets an update. Really like the customizations available but without me being able to get data plan and mms I am not comfortable testing it more than an hour or two at home. So back to ProBam for the time being.
Click to expand...
Click to collapse
System format, clean new rom install wipe caches. Using philz touch recovery. Tried to go to APN to get data working to log in google, Force closed.
Let me get it because i can't setup CM11
THX
same error as CM11......
set_metadata_recursive ; some changes failed
E:error in /(sd path)
(status 7)
maybe recovery problem?
using 6.0.3.2
before_c said:
Let me get it because i can't setup CM11
THX
same error as CM11......
set_metadata_recursive ; some changes failed
E:error in /(sd path)
(status 7)
maybe recovery problem?
using 6.0.3.2
Click to expand...
Click to collapse
Epinter's CM11 does clearly state 6.0.4.4 at a minimum is required for 4.4 ROMs....
Sent from my MB886 using xda app-developers app
palmbeach05 said:
Epinter's CM11 does clearly state 6.0.4.4 at a minimum is required for 4.4 ROMs....
Sent from my MB886 using xda app-developers app
Click to expand...
Click to collapse
Use the recovery 6.0.4.4 for XT925/926 is OK?
before_c said:
Use the recovery 6.0.4.4 for XT925/926 is OK?
Click to expand...
Click to collapse
http://download2.clockworkmod.com/recoveries/recovery-clockwork-touch-6.0.4.4-mb886.img
jaweinre said:
download2.clockworkmod.com/recoveries/recovery-clockwork-touch-6.0.4.4-mb886.img[
Click to expand...
Click to collapse
Thx
======
headsets still can't use same as CM11......
why?
before_c said:
Thx
======
headsets still can't use same as CM11......
why?
Click to expand...
Click to collapse
Maybe its a common problem with CM11? This is still a relatively new ROM/Android version. Be patient and the devs will fix things.

BetterBatteryStats "battery info service could not be contacted"

I get "batteryinfo service could not be contacted" toast message whenever I try to check kernel wake lock or partial wake locks etc.
I've installed it as a system app and rebooted like it had told me to.
I'm running the stock ROM.
Works fine here, are you using the latest version RC5?
zephiK said:
Works fine here, are you using the latest version RC5?
Click to expand...
Click to collapse
Running the latest, yes.
Partial wakelock is now visible, but kernel wake lock and process won't show up.
waqar.qu said:
Running the latest, yes.
Partial wakelock is now visible, but kernel wake lock and process won't show up.
Click to expand...
Click to collapse
Is it installed as a system app? That may be the culprit. Uninstall, revoke BBS SU privileges, reboot phone and re-install as a system app.
ballaz said:
Is it installed as a system app? That may be the culprit. Uninstall, revoke BBS SU privileges, reboot phone and re-install as a system app.
Click to expand...
Click to collapse
Did you ever figure anything out for this? I am experiencing the same issue.
Same here
ironjon said:
Same here
Click to expand...
Click to collapse
It works fine here. You MUST use the version on XDAwhich is v2.0 RC6 (not Play which is v1.16) and install as system app.
Skripka said:
It works fine here. You MUST use the version on XDAwhich is v2.0 RC6 (not Play which is v1.16) and install as system app.
Click to expand...
Click to collapse
Didn't realize there was a newer version. I will give it a go.
Thanks,
vladthedog said:
Didn't realize there was a newer version. I will give it a go.
Thanks,
Click to expand...
Click to collapse
Nice one that fixed my issue!
Sent from my Nexus 6 using XDA Free mobile app
Works fine here, are you using the latest version RC5?

Ambient Display MOD for build LMY47O And LMY47I

Hey guys here is Ambient display mod for Android one device recently upgraded to build LMY47O
Ambient display is a feature for your lock screen. It basically lights up your phone’s display whenever there’s a new notification or when you pick up your device. And to save battery while doing that, ambient display optimizes the screen color to fade to grey color only when it turns on, and then smartly turn the screen colorful as soon as you interact with the screen.
But because of hardware limetations it will not work when you pick up your device or get it out of your pocket...
but its really a cool and hidden feature of lollipop so you may like to try it
you can download it from attackments
How to use
Flash it from custom recovery
No need to wipe dalvik-cache it may waste your time but if you got stuck then wiping dalvik-cache will fix that
And its working perfect on my device if you got any error please report to me
And if you just want to give it try and want to revert back to stock( remove ambient display feature) then you can use cleaner zip for it.
Cheers
EDIT:-The zip here named for LMY47O is working for LMY47I also
Credits
thanks to @awaaas for his humble help
I just want to post this too, thanks anyway!
hjmodi said:
Hey guys here is Ambient display mod for Android one device recently upgraded to build LMY47O
for information about what does this mod do ad how to port it to your device visit this thread
but its really a cool and hidden feature of lollipop so you may like to try it
you can download it from attackments
How to use
Flash it from custom recovery
No need to wipe dalvik-cache it may waste your time but if you got stuck then wiping dalvik-cache will fix that
And its working perfect on my device if you got any error please report to me
Cheers
Credits
thanks to @awaaas for his humble help
Click to expand...
Click to collapse
Working great dude... Nice workk... Thnkxzz.. ☺
Work great brother... Thanx for sharing.
O ya... Which apktool version you use to compile or decompile android l APK. Using Apktool_v2 rc 4, getting some error brut.all
Sent from my Android One device using Tapatalk.
hjmodi said:
Hey guys here is Ambient display mod for Android one device recently upgraded to build LMY47O
for information about what does this mod do ad how to port it to your device visit this thread
but its really a cool and hidden feature of lollipop so you may like to try it
you can download it from attackments
How to use
Flash it from custom recovery
No need to wipe dalvik-cache it may waste your time but if you got stuck then wiping dalvik-cache will fix that
And its working perfect on my device if you got any error please report to me
Cheers
Credits
thanks to @awaaas for his humble help
Click to expand...
Click to collapse
Do it work when we pick up phone like nexus 6 or just the breathing notification for 2 3 times when notification arrives?
Sent from my XT1022 using XDA Premium mobile app
Hi
Actually i don't owe a nexus 6 but this is a good mod and you can give it a try and report me back , in meantime i'm attaching another zip to remove this mod so you and anyone who want to try can give it a shot
rodhiesutrawan said:
Work great brother... Thanx for sharing.
O ya... Which apktool version you use to compile or decompile android l APK. Using Apktool_v2 rc 4, getting some error brut.all
Sent from my Android One device using Tapatalk.
Click to expand...
Click to collapse
Here is a link which was provided by @awaaas and if it doesn't work for you can try apktool from
this link also
Does this feature drains battery life? Will it wake up even if i dont pick my device and a notification comes?
Not yet So dont worry!
nand.96 said:
Does this feature drains battery life? Will it wake up even if i dont pick my device and a notification comes?
Click to expand...
Click to collapse
No battery drainage problem is there
This mod basically just wakes your device up on some events e.g if any notification arrives
and then if you don't touch it then it'll quickly turn screen off in 2-3 seconds I'm personally using it and not observed any battery drainage yet .
hjmodi said:
No battery drainage problem is there
This mod basically just wakes your device up on some events e.g if any notification arrives
and then if you don't touch it then it'll quickly turn screen off in 2-3 seconds I'm personally using it and not observed any battery drainage yet .
Click to expand...
Click to collapse
apks?
It is not working on my Symphony A50(LMY470). After enable it on setting screen doesn't light up when any notification comes.....
Androidoo said:
apks?
Click to expand...
Click to collapse
No apks
aroy4500 said:
It is not working on my Symphony A50(LMY470). After enable it on setting screen doesn't light up when any notification comes.....
Click to expand...
Click to collapse
its working bro.
But it has been set to delay 17ms so when you see after 1-2 second it'll quickly got turned off.
hjmodi said:
its working bro.
But it has been set to delay 17ms so when you see after 1-2 second it'll quickly got turned off.
Click to expand...
Click to collapse
No,brother. I have flashed it many times but it doesn't work on my Symphony:crying:
aroy4500 said:
No,brother. I have flashed it many times but it doesn't work on my Symphony:crying:
Click to expand...
Click to collapse
I'm using it on my device working perfect we better wait for other symphony a50 owner to report back.
not working
not working in miceomax a1
hjmodi said:
Hi
can give it a shot
Click to expand...
Click to collapse
great work didnt saw the flashable zip sorry
Androidoo said:
great work didnt saw the flashable zip sorry
Click to expand...
Click to collapse
it'll all ok
thanx :highfive: :good: :victory:
I guess its not working for me too. Using Symphony roar A50. btw, noticed it has a seperate built number while flashing the zip. r u sure this mod is for LMY470?
Its only because I'm somewhat lazy
I've made mod and packed it in zip of mod for build LBY29G that's why its showing that number
If you observe I haven't edited cleaner zip also...
Sent from my Spice Mi-498 using XDA Free mobile app

Safe apps to remove?

Hi, does anyone have a list of apps that are safe to freeze or remove via titanium backup? (Mainly system apps/bloatware) On previous phones I've used there's usually zips that you can flash via recovery but I don't see much for the z1.
Thanks in advance
brooker88 said:
Hi, does anyone have a list of apps that are safe to freeze or remove via titanium backup? (Mainly system apps/bloatware) On previous phones I've used there's usually zips that you can flash via recovery but I don't see much for the z1.
Thanks in advance
Click to expand...
Click to collapse
look here mate
iedafarha said:
look here mate
Click to expand...
Click to collapse
Great, thanks
iedafarha said:
look here mate
Click to expand...
Click to collapse
I don't suppose you know what PowerManagerService.WakeLocks is? I've looked around and seems to be something to do with all the partial WakeLocks, but no partial WakeLocks show up in BBS.
Also qpnp-charger-f5142e00 something to do with charging but yet again fail to find much information about it. Is a lot of differences compared to other phones I've previously used
brooker88 said:
I don't suppose you know what PowerManagerService.WakeLocks is? I've looked around and seems to be something to do with all the partial WakeLocks, but no partial WakeLocks show up in BBS.
Also qpnp-charger-f5142e00 something to do with charging but yet again fail to find much information about it. Is a lot of differences compared to other phones I've previously used
Click to expand...
Click to collapse
sorry, i dont know much about this, may be you can go to Extreme Battery Life Thread here
"
iedafarha said:
sorry, i dont know much about this, may be you can go to Extreme Battery Life Thread here
"
Click to expand...
Click to collapse
I've followed that guide for awhile now, it worked great on my note 2. I tried on Sony Z1 and discovered I was getting WakeLocks so I reset and tried without and still got then. I'm in the middle of setting up amplify now. Thanks anyways

[Discontinued][Rom][VZW_G935U_PI3_PlayStore_Rom][Working_Wifi_Calling_VVM]

Why call this rom the PlayStore Rom? Because this rom features absolutely nothing, thats the beauty of it! If you want something your going to have to get it from the PlayStore. You can customize it any way you want. The rom boots and you can make a phone call and get on the playstore thats about it. So have fun! ​
Features
Google Dialer and Google Contacts
S7 Camera
Google Launcher
Samsung Gallery Left so Lockscreen Wallpaper can be changed
Google Now
Google Maps
Verizon Visual Voicemail
L Speed (for tweeks and other stuff)
Thats It No More! Dont Ask Thats why its called the Playstore Rom. If you want it download it!
Bugs
Alot of things will not work or may FC in settings. This is because it is removed. Deal with it!
Install Instructions For PI3 International Firmware
Note about new rom
This will require you to reinstall The PEH firmware and reroot. Once done The new rom will flash files not a system.img any more. The zip file will be alot smaller. I think this will also help on the MMS problem for some people, as the system partition was getting messed up during multiple flashes of system.img images
Recommended you be on PH1 or PI3 firmware and Rooted
Install Flashfire
G930U_PEH_Deodexed_BS_Free_Rom.zip on internal or sdcard
Open FlashFire and agree to terms
Click the + button in the actions menu
Click Flash Zip or OTA and locate VZW_G935U_PI3_DEODEX_AROMA_V1.zip_Rom.zip and click on it
In Options menu leave the box Mount/system read/write checked and click the check mark in the top right corner of options menu to flash this rom
Leave EverRoot disabled
Leave reboot menu set to normal
Click On The Big Flash Box at Bottom With the Red lightning bolt to flash rom
This zip will wipe data but not internal storage
View attachment 3814934
Downloads
VZW_G935U_PI3_DEODEX_AROMA_V1.zip
Change Log
V2
Zip flashes files now no more system.img
Added root essentials which includes a root browser and lots of other cool features.
Added force doze which will increase battery life by up to 40 percent,
Added Adaway for add blocking
Updated FlashFire to V52
Includes Previous Fix
Post Install Instructions
You must decide if you want to use Google IncallUI or Samsung InCallUI. Samsung InCallUI will allow too still receive and switch to video calls and the google IncallUI will only support HD calling. To switch to google IncallUI goto settings/applications click on default applications choose calling app and click on the blue phone app. To switch back to samsung IncallUI is a little more complicated. You will need an app like root explorer and goto data/system/users/0 and then findthe setting_secure.xml and delete and then restart phone. This will restore samsung IncallUI as default
You will also want to turn edge features off since everthing is deleted
Also you need to goto SuperSU app and goto settings and click on enable su during boot and also click trust system users
Goto this thread and under Recommended Next Steps find the S7_or_S7Edge_Fixes_V15.zip or latest version and flash to fix kernel lage and doze fix.
Goto setting/about phone
Click on build number 5 times to enable developer options
Change animation and duration scales to .05 this will speed up phone
You will also have to change charging/file mode from within developer options
Remember Wiping Dalvik cache will cause phone to take up to 10 min to boot on deodexed roms
If using samsung IncallUI here is a fix for call phone FC and also location service fix
Phone_Fix_Misc_Fix.zip
Another! Is this that different from your other?
Sent from my SM-G935V using Tapatalk
markwebb said:
Another! Is this that different from your other?
Sent from my SM-G935V using Tapatalk
Click to expand...
Click to collapse
Of course it is different read the OP
Yes I can read. Sorry to support you.
Sent from my SM-G935V using Tapatalk
@jkruse Thanks bro appreciate your efforts. One favor, do you know where the Olympic theme is located on your first Rom? (Which folder?) I'm going to extract it from the other version and install it in this one. For some reason its not on the Samsung theme store.
markwebb said:
Yes I can read. Sorry to support you.
Sent from my SM-G935V using Tapatalk
Click to expand...
Click to collapse
I didnt mean for my reply to come across rude. I just thought since the OP looks like the other one you thought it was the same. This is basically nothing but a bootable rom with like 5 apps installed thats it there are over 180 running apps removed. I kind of thought it would be cool to be able to build your rom how ever you want it without having to worry about what you can delete and what you cannot. I appreciate the support especially on new development. Understand I have many threads and and other devices so i sometimes keep my answers short and direct especially when using the mobile app which I hate using.
jrkruse said:
I didnt mean for my reply to come across rude. I just thought since the OP looks like the other one you thought it was the same. This is basically nothing but a bootable rom with like 5 apps installed thats it there are over 180 running apps removed. I kind of thought it would be cool to be able to build your rom how ever you want it without having to worry about what you can delete and what you cannot. I appreciate the support especially on new development. Understand I have many threads and and other devices so i sometimes keep my answers short and direct especially when using the mobile app which I hate using.
Click to expand...
Click to collapse
Real talk you're an awesome dev
jrkruse said:
I didnt mean for my reply to come across rude. I just thought since the OP looks like the other one you thought it was the same. This is basically nothing but a bootable rom with like 5 apps installed thats it there are over 180 running apps removed. I kind of thought it would be cool to be able to build your rom how ever you want it without having to worry about what you can delete and what you cannot. I appreciate the support especially on new development. Understand I have many threads and and other devices so i sometimes keep my answers short and direct especially when using the mobile app which I hate using.
Click to expand...
Click to collapse
Ok, that is what I thought. I just was trying to determine if there was anything else major missing from that other ROM, knowing some apps would have to be pulled or installed, hence your "Playstore" moniker for this ROM. Ok, this is a good clean base ROM for those who like to order "a la carte" down the road when the need for other features are required. I may give it a spin for the fun of it.
Cool! We are good.
sweet idea
Inb4 crazy high battery stats
Just finished flashing about 4 minutes ago. Still suck on the white SAMSUNG logo. Is this normal?
UPDATE: Took like 8 minutes to boot. Runs fine.
Downloading now. Been waiting for something like this. Cheers.
ShadowyStorm said:
Downloading now. Been waiting for something like this. Cheers.
Click to expand...
Click to collapse
Super smooth. Thank you good sir.
If using samsung IncallUI here is a fix for call phone FC and also location service fix for apps not asking proper permission
Phone_Fix_Misc_Fix.zip
Should we flash this either way?
bickfordman said:
Should we flash this either way?
Click to expand...
Click to collapse
I'm using the Google incall with no issues at all. Probably no need to flash if that's what you're using.
So far the ROM is nearly perfect.
Having some MMS issues again. It only works when Wifi is turned off or not connected to a network.
Any assistance would be greatly appreciated. I even flashed your fix it ZIP.
Hey I'm considering installing this ROM because I live the minimalism of it. How's the performance? Anyone mind posting an AnTuTu score?
Syn Ack said:
So far the ROM is nearly perfect.
Having some MMS issues again. It only works when Wifi is turned off or not connected to a network.
Any assistance would be greatly appreciated. I even flashed your fix it ZIP.
Click to expand...
Click to collapse
I actually found one of the battery saver apps to be causing the issue. I think it was amplify through xposed, it caused the mobile data to turn off when connected to wifi. So, i turned it off and haven't had an issue since.

Categories

Resources