[MOD][GUIDE]Remove cloudy overlay and improve ripple lockscreen - All Samsung Devices - Android Software Development

Hi all
Me and Dazznuts been playing with ripple renderer and found the following to remove the hazy overlay that made dark lockscreen wallpapers look bad on our devices. The mod makes two changes. One to remove the cloud and one to improve ripple visibility on dark walls. We just replace some values with 0x1 and 0x0.
We changed the refractiveIndex because if using a black heavy background the ripple became hard to see. Changing the refractiveIndex makes it refract a greater distance so it will usually pick up some of the colored part of the wallpaper. Using a totally black wallpaper with no image will result in ripple being invisible.
Decompile android.policy.jar and open CircleUnlockRippleRenderer.smali.
Search for this...
Code:
.line 159
const v5, 0x3f666666
iput v5, p0, Lcom/android/internal/policy/impl/sec/CircleUnlockRippleRenderer;->mReductionRate:F
.line 162
const v5, 0x3f6e147b
iput v5, p0, Lcom/android/internal/policy/impl/sec/CircleUnlockRippleRenderer;->refractiveIndex:F
.line 163
const v5, 0x3e051eb8
iput v5, p0, Lcom/android/internal/policy/impl/sec/CircleUnlockRippleRenderer;->reflectionRatio:F
.line 164
iput v10, p0, Lcom/android/internal/policy/impl/sec/CircleUnlockRippleRenderer;->alphaRatio1:F
We need to change refractiveIndex and alphaRatio1. So at this line...
const v5, 0x3f6e147b
iput v5, p0, Lcom/android/internal/policy/impl/sec/CircleUnlockRippleRenderer;->refractiveIndex:F
Change it to....
const/4 v5, 0x1
iput v5, p0, Lcom/android/internal/policy/impl/sec/CircleUnlockRippleRenderer;->refractiveIndex:F
That improves ripple and now we remove cloudiness.....
This line...
iput v10, p0, Lcom/android/internal/policy/impl/sec/CircleUnlockRippleRenderer;->alphaRatio1:F
Becomes...
const/4 v5, 0x0
iput v5, p0, Lcom/android/internal/policy/impl/sec/CircleUnlockRippleRenderer;->alphaRatio1:F
So full code is....
Code:
.line 159
const/4 v5, 0x3f666666
iput v5, p0, Lcom/android/internal/policy/impl/sec/CircleUnlockRippleRenderer;->mReductionRate:F
.line 162
const v5, 0x1
iput v5, p0, Lcom/android/internal/policy/impl/sec/CircleUnlockRippleRenderer;->refractiveIndex:F
.line 163
const v5, 0x3e051eb8
iput v5, p0, Lcom/android/internal/policy/impl/sec/CircleUnlockRippleRenderer;->reflectionRatio:F
const v5, 0x0
.line 164
iput v5, p0, Lcom/android/internal/policy/impl/sec/CircleUnlockRippleRenderer;->alphaRatio1:F
And thats it. Should work on any device. Renderer may be a little different but post and ask if you're not sure
Have fun and please spread the word to your respective devices devs
Sent from my GT-I9305 using Tapatalk 4

Oh...screenshots...
Before....
{
"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"
}
After....
Video... (laggy due to screen capture app)
https://www.youtube.com/watch?v=wDhLA-Zmo78&feature=youtube_gdata_player
Sent from my GT-I9305 using Tapatalk 4

And it really does just give ripple that nice finish

Great work :thumbup::thumbup:

andrewwright said:
Great work :thumbup::thumbup:
Click to expand...
Click to collapse
+100
Bravo :thumbup::thumbup:
Sent from my NeatRom'ed GT-I9300 wifi hotspoting from my NeatRom'ed GT-I9100

Works and looks great thankyou m8 :thumbup:
Sent from my GT-I9500

Just thought I would add a couple of things for anyone trying this mod...
(it works perfectly btw. Thanks for this guys )
From the code above, this line (actually, mReductionRate is missing entirely) does not exist in all smali codes. It is missing from the version I am using for JB 4.1.2:
iput v5, p0, Lcom/android/internal/policy/impl/sec/CircleUnlockRippleRenderer;->mReductionRate:F
It doesn't really matter but just saying if someone is looking for an exact match, they may not find it.
Also, for newbies, just do a search for something simple like refractiveIndex
instead of the entire line since the public values are going to be different from rom to rom and the variables are also going to change.
For instance before I change the refractiveIndex value my line reads:
const v3, 0x3f6e147b
new line would be:
const/4 v3, 0x1

tdunham said:
From the code above, this line (actually, mReductionRate is missing entirely) does not exist in all smali codes. It is missing from the version I am using for JB 4.1.2:
iput v5, p0, Lcom/android/internal/policy/impl/sec/CircleUnlockRippleRenderer;->mReductionRate:F
It doesn't really matter but just saying if someone is looking for an exact match, they may not find it.
Click to expand...
Click to collapse
Yeah smalis will differ. Mine is different. If using ink effect smalis its different for a start
Also, for newbies, just do a search for something simple like refractiveIndex
instead of the entire line since the public values are going to be different from rom to rom and the variables are also going to change.
For instance before I change the refractiveIndex value my line reads:
const v3, 0x3f6e147b
new line would be:
const/4 v3, 0x1
Click to expand...
Click to collapse
You mean the v rather than an ID? There is no public ids in that bit of code
Registers can indeed be different though with v5 vs v3 like you say
Sent from my GT-I9305 using Tapatalk 4

bombaybadboy said:
Works and looks great thankyou m8 :thumbup:
Sent from my GT-I9500
Click to expand...
Click to collapse
It does and its such an easy mod

@Goldieking, Hey mate, I tried to replicate your mod but apktool gives me an error(s) and it won't recompile my android.policy.jar
I've attached both my CircleUnlockRippleRenderer.smali (zipped) and a picture of what error I'm getting in apktool...
(edit: sorry for the picture's bad quality, xda must have compressed it while uploading it...)
Please help me out

Sami Kabir said:
@Goldieking, Hey mate, I tried to replicate your mod but apktool gives me an error(s) and it won't recompile my android.policy.jar
I've attached both my CircleUnlockRippleRenderer.smali (zipped) and a picture of what error I'm getting in apktool...
(edit: sorry for the picture's bad quality, xda must have compressed it while uploading it...)
Please help me out
Click to expand...
Click to collapse
Im guessing you're alphaRatio1 was v10 like alphaRatio2. You should leave the v as they were and just replace what is after the ","
Sent from my GT-I9305 using Tapatalk

Goldieking said:
Im guessing you're alphaRatio1 was v10 like alphaRatio2. You should leave the v as they were and just replace what is after the ","
Sent from my GT-I9305 using Tapatalk
Click to expand...
Click to collapse
Sorry mate, I didn't exactly get you.. can you elaborate on what line (or lines) I should and shouldn't edit?

Actually scratch that. Are you sure you didn't edit anything else? Try to put const/4 instead of just const in the two lines.
Sent from my GT-I9305 using Tapatalk

Goldieking said:
Actually scratch that. Are you sure you didn't edit anything else? Try to put const/4 instead of just const in the two lines.
Sent from my GT-I9305 using Tapatalk
Click to expand...
Click to collapse
Okay, I found out that one of the lines/codes in my smali file had "const/4 v5" and the other one was "const v5"... so all I had to do was remove the "4" from that line
So, yeah now your mod works perfectly!! THANKS FOR SHARING THIS MATE!
One more thing, the first time when I tap on my lockscreen, the ripple effect will either not work or will lag.. But then if I tap again and again, it becomes normal and lag free... I've noticed this before applying your mod, but I just want to know that did you ever experience it or do you know how to solve it?
Its not a major issue but it gives a bad "first impression" if you know what I meant..

Sami Kabir said:
Okay, I found out that one of the lines/codes in my smali file had "const/4 v5" and the other one was "const v5"... so all I had to do was remove the "4" from that line
So, yeah now your mod works perfectly!! THANKS FOR SHARING THIS MATE!
One more thing, the first time when I tap on my lockscreen, the ripple effect will either not work or will lag.. But then if I tap again and again, it becomes normal and lag free... I've noticed this before applying your mod, but I just want to know that did you ever experience it or do you know how to solve it?
Its not a major issue but it gives a bad "first impression" if you know what I meant..
Click to expand...
Click to collapse
Cant say ive seen this myself, just tested a few times aswell.

M8 this mod are perfect
Sent from my GT-I9070 using Tapatalk

Thanks for the code. Works great on my Note 3 (N900).

i think you should update this for 4.3, this code
Lcom/android/internal/policy/impl/sec/CircleUnlockRippleRenderer
is now
Lcom/android/internal/policy/impl/keyguard/sec/CircleUnlockRippleRenderer
great guide! works well on the S3 4.3! goodjob!

tdunham said:
Just thought I would add a couple of things for anyone trying this mod...
(it works perfectly btw. Thanks for this guys )
From the code above, this line (actually, mReductionRate is missing entirely) does not exist in all smali codes. It is missing from the version I am using for JB 4.1.2:
iput v5, p0, Lcom/android/internal/policy/impl/sec/CircleUnlockRippleRenderer;->mReductionRate:F
It doesn't really matter but just saying if someone is looking for an exact match, they may not find it.
Also, for newbies, just do a search for something simple like refractiveIndex
instead of the entire line since the public values are going to be different from rom to rom and the variables are also going to change.
For instance before I change the refractiveIndex value my line reads:
const v3, 0x3f6e147b
new line would be:
const/4 v3, 0x1
Click to expand...
Click to collapse
Hi. I'm on JB 4.1.2. I've try to change the Value like You suggest (const/4 v3, 0x1).
The Phone start, but cause me big quantity of FC. It doesn't arrive to the Lock Screen.
Mod work, in fact If I push Power button... the display turn off regulary and I can see the hazy overlay fixed. But, like said... all in FC.
Where I Wrong?

Cant help without logcat
Sent from my GT-I9305 using Tapatalk

Related

Voodoo Control App - Best values of "Gamma" and "Color multipliers"

Voodoo Control App - Best values of "Gamma" and "Color multipliers"
What are the best values of "Gamma" and "Color multipliers" for our SAMOLED screen?
I use these that I have always found here on XDA:
Code:
Range Set to:
Red = -26
Green = -30
Blue = -33
Colour Multipliers:
Red = 353834880
green = 3374617280
blue = 3568913600
Share your settings "Voodoo control app".
loganno said:
What are the best values of "Gamma" and "Color multipliers" for our SAMOLED screen?
I use these that I have always found here on XDA:
Code:
Range Set to:
Red = -26
Green = -30
Blue = -33
Colour Multipliers:
Red = 353834880
green = 3374617280
blue = 3568913600
Share your settings "Voodoo control app".
Click to expand...
Click to collapse
these values make the screen colors look like they did pre 2.3.3. personally, i like the warmth of the new colors, so i havent been using any profiles... except the "punchy" setting in the screen v0 gamma hack option. i like it darker that way
loganno said:
What are the best values of "Gamma" and "Color multipliers" for our SAMOLED screen?
I use these that I have always found here on XDA:
Code:
Range Set to:
Red = -26
Green = -30
Blue = -33
Colour Multipliers:
Red = 353834880
green = 3374617280
blue = 3568913600
Share your settings "Voodoo control app".
Click to expand...
Click to collapse
These are nice settings. As Simms stated, these very much remind me of the colors pre 2.3.3
simms22 said:
these values make the screen colors look like they did pre 2.3.3. personally, i like the warmth of the new colors, so i havent been using any profiles... except the "punchy" setting in the screen v0 gamma hack option. i like it darker that way
Click to expand...
Click to collapse
The punchy setting looks pretty sweet on my phone as well. Not messing with the other colors.
from Netarchy
red: 2125101030, green: 2251515580, blue: 2996250880
I like the settings the OP posted. Although, it seems like the multipliers are just a ratio of sorts, to the point that they could be much lower, as long as they're all within the same range of each other as compared to what's posted. Regardless, I like this much better than the stock w/ Punchy or the halfway setting. It still looked quite yellowish til I applied the OP's. Looks great now.
Thanks!
upon trying out 1.2.7 it looks perfect as it was before 2.3.3
1.2.5a had the colors pre-2.3.3 as well if you guys wanted that experience once again without playing with these settings
Ok I'm gonna ask a stupid newbie question: where do you put these settings? The only thing related to color in the voodoo control app (at least the one I have) is to choose between two color profiles, original and voodoo profile. Everything else is related to sound. Am I missing something??
Sent from my Nexus S using XDA App
...you might like to update your Voodoo Control app? Latest version is 0.9.
Also, what rom and kernel (versions) are you using?
im useing the Axura rom latest with the Honity14 kernel by morfic. my settings for the voodoo control app are as follows:
Color Profile- Voodoo profile 2.3.3
Screen RGB Multipliers- Red/default
Green/Default
Blue/MAX Setting 4294967290
Screen gamma offset- Red/-40
Green/-40
Blue/-40
And my screen brightness in "display settings" is not on auto but slider is approximately 40%. These settings works great under auto as well for me but i much prefer a brigter screen.
These settings work best for me, its the closest i could have achieve to the brightness and color contrast of my previous phone,samsung vibrant.
Lalaca said:
...you might like to update your Voodoo Control app? Latest version is 0.9.
Also, what rom and kernel (versions) are you using?
Click to expand...
Click to collapse
Ok updated to 0.9, still don't know what you guys are talking about.
I'm on CyanogenMod 7 RC1 (2.3.2 base)
Netarchy 1.2.5 cfs cm7 compatible.
Sent from my Nexus S using XDA App
YDardeer said:
Ok updated to 0.9, still don't know what you guys are talking about.
I'm on CyanogenMod 7 RC1 (2.3.2 base)
Netarchy 1.2.5 cfs cm7 compatible.
The netarchy 1.2.5 cfs kernel does not have the updated voodoo color driver that is why you do not have the color controls listed in the voodoo control app.
Only way you can have that is wait for a 2.3.3 cyanogen base rom and flash the new updated netarchy 1.2.7 kernel or just install another rom that is 2.3.3 updated and flash the new netarchy kernel if compatible.
Click to expand...
Click to collapse
Got it. Thanks.
And hey what do you, RC2 is here. 2.3.3 ftw
Sent from my Nexus S using XDA App
mamba720027 said:
im useing the Axura rom latest with the Honity14 kernel by morfic. my settings for the voodoo control app are as follows:
Color Profile- Voodoo profile 2.3.3
Screen RGB Multipliers- Red/default
Green/Default
Blue/MAX Setting 4294967290
Screen gamma offset- Red/-40
Green/-40
Blue/-40
And my screen brightness in "display settings" is not on auto but slider is approximately 40%. These settings works great under auto as well for me but i much prefer a brigter screen.
These settings work best for me, its the closest i could have achieve to the brightness and color contrast of my previous phone,samsung vibrant.
Click to expand...
Click to collapse
Lawl, I just did this earlier today before I saw this post.
{
"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"
}
YDardeer said:
Got it. Thanks.
And hey what do you, RC2 is here. 2.3.3 ftw
Great.
j0hnZ said:
Lawl, I just did this earlier today before I saw this post.
lol nice, how does that work for you? I will have to try it out on a dark stock like theme rom later see if also works good.
Click to expand...
Click to collapse
Click to expand...
Click to collapse
mamba720027 said:
YDardeer said:
Got it. Thanks.
And hey what do you, RC2 is here. 2.3.3 ftw
Great.
j0hnZ said:
Lawl, I just did this earlier today before I saw this post.
lol nice, how does that work for you? I will have to try it out on a dark stock like theme rom later see if also works good.
Click to expand...
Click to collapse
Looks like my Vibrant, so I'm happy.
Click to expand...
Click to collapse
Click to expand...
Click to collapse
can I save my color setting, like create my custom profile?
sometimes I just would like to try to adjust the slider to find my best color but quite hard for me to remember my last favorite setting and slide them back manually ^^!
no_one_can said:
can I save my color setting, like create my custom profile?
sometimes I just would like to try to adjust the slider to find my best color but quite hard for me to remember my last favorite setting and slide them back manually ^^!
Click to expand...
Click to collapse
the new version of the app saves it on every boot unless you're flashing a new ROM. if you flash ROMs, you should use a backup app such as titanium backup
Here's another thread about this if you guys are interested.
http://forum.xda-developers.com/showthread.php?t=1002090
Carne_Asada_Fries said:
Here's another thread about this if you guys are interested.
http://forum.xda-developers.com/showthread.php?t=1002090
Click to expand...
Click to collapse
ok, i got another option to restore my ptofile using the terminal to put value to the files directly thx man
Sent from my Nexus S using Tapatalk

[Tweak]U.S.A.Sv6

These are some tweaks created by dsexton702 that offer you a generous performance boost in I/O and giving you the newest fugu mod 3.1. This is a fast growing tweak and needs to be shared with everyone who can benefit from it
This has been tested on the nexus s
download the U.S.A.Sv6
OP: http://forum.xda-developers.com/showthread.php?t=1236779
Thanks a lot.will try asap
Sent from my Nexus S using XDA App
Post your results..
Sent from my Nexus S using Tapatalk
I have all those tweaks in my MIUI ROM before he even posted that.
And my MIUI ROM contains even more tweaks.
But, those are good tweaks.
could we see a screenshot of your quadrant before and after. at least after, because i dont think this is needed for the nexus s.
nexus s at 1.44ghz
{
"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"
}
..
Deleted.
10chars
brainmaster said:
@ OP - You should reconsider if those tweaks are really universal. Since you are posting in the Nexus S section, I should inform you that your mount points in your scripts don't apply on Nexus S.
The hex-edited files might be working, but your scripts in init.d or in CWM flash file wont work here.
And as already stated in the quote, allot of those tweaks are giving a little bit more performance at cost of the stability and might cause data corruption.
I advise the Nexus S users - DO NOT FLASH THIS ON YOUR DEVICE!
Click to expand...
Click to collapse
Can you even read? I said u.s.a.sv6 what you just posted was s.a.sv6
This is universal and will work on the nexus s with no risk of data loss unless you disable journaling please read the whole op before advising people what to do
Sent from my SGH-T959V using XDA Premium App
dsexton702 said:
Can you even read? I said u.s.a.sv6 what you just posted was s.a.sv6
This is universal and will work on the nexus s with no risk of data loss unless you disable journaling please read the whole op before advising people what to do
Sent from my SGH-T959V using XDA Premium App
Click to expand...
Click to collapse
Do you own Nexus S - have you tested it on Nexus S yourself?
Are you really sure that it works for Nexus S (specially the mount points)?
brainmaster said:
Do you own Nexus S - have you tested it on Nexus S yourself?
Are you really sure that it works for Nexus S (specially the mount points)?
Click to expand...
Click to collapse
personally i dont have one
has it been tested on nexus s yes
this tweak is simple and works
improves i/o performance
comes with the NEWEST fugu mod original is honeycomb 3.0 this is honeycomb 3.1
Deleted.
10chars
brainmaster said:
Friend, can you read what I wrote earlier:
Hex-edited files are O.K., but your scripts are not working because of the false parameters for mount points in init.d scripts and in your journaloff script.
The one that tested it for you should have told you that. I know what I'm telling.
Do you get that?
Click to expand...
Click to collapse
no your the one not getting something, everything your referring to is the version of the tweak for the SGS4G the universal version for more then 10 phones now has only 1 init.d script and JOURNALING IS ENABLED
instead of hating with false references you should atleast try then report back with hatred
dsexton702 said:
no your the one not getting something, everything your referring to is the version of the tweak for the SGS4G the universal version for more then 10 phones now has only 1 init.d script and JOURNALING IS ENABLED
instead of hating with false references you should atleast try then report back with hatred
Click to expand...
Click to collapse
You are right - I apologize myself. I've seen that I referred to the SGS tweaks (that I've tested) not the USGS tweaks.
It has nothing to do with hating.
Says it flashed but really didn't. None of the new files are in location. Going to manually add what are permissions for files
Sent from my Google Nexus S using XDA App
demo23019 said:
Says it flashed but really didn't. None of the new files are in location. Going to manually add what are permissions for files
Sent from my Google Nexus S using XDA App
Click to expand...
Click to collapse
Lib files rw-r-r
Bin rwxr-xr-r
Sent from my SGH-T959V using XDA Premium App
Nevermind got it. Had to manually mount system before flashing.
Thanks for quick responce though.
Sent from my Google Nexus S using XDA App
edit
Working great
Op, can you please provide before ans after screenshots as already requested.
Sent from my LG-P999 using XDA App
simms22 said:
could we see a screenshot of your quadrant before and after. at least after, because i dont think this is needed for the nexus s.
nexus s at 1.44ghz
..
Click to expand...
Click to collapse
yup i agree with u simms, i dont think nexus s need this.
We uses trinity kernel if we need the fastest power on nexus s.
It already blazing fast with or without it.
Really sorry, no offense.
this script is useless. I flashed usas v6, but running quadrant before arrive at 3500 and the second time the 3rd time and after the score is around 4400, like without script.
It might be useless for speed but it did increase the frame rate of the videos and in my opinion made it a bit smoother
Krishna.duvvuri said:
It might be useless for speed but it did increase the frame rate of the videos and in my opinion made it a bit smoother
Click to expand...
Click to collapse
what was the frame rate?

[Comparison] All ICS ROMs for Note - upd *2012-04-20*

Please, if you have an ICS ROM, do this survey, to help everyone and get better statistics about the available ROMs for Note:
>> TAKE THE SURVEY <<
If you are a ICS ROM chef/dev, please add the link to the Survey to your post
Live results: table
(The Bug and Feature list is automatically generated of all answers. If not all people answer a question the same, then the mean is calculated.)
Manual analysis (updated 2012-04-19)
{
"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"
}
Currently compared ROMs are:
ICS Stunner v4.3
ICS Stunner v4.4
ROMOW v10
MIDNOTE v3.1
imilka's AOSP v8
AlBa ZCLP5 v2
imilka's CyanogenMod 9 v01
ICSoniX Bl0ody N0te v2.2
ICS Stunner v5.0
MIDNOTE v3.3 (LP6)
imilka's CyanogenMod 9 v02
ICS Stunner v1.4.19
M3dD0g's LiquidSmooth Beta v1.0
Criskelo's ICS v2
imilka's CyanogenMod 9 v03
TheMIDTeam v1.0
AlBa ZCLP6 v2
MIDNOTE 3.0, very smooth and stable.
3.1 version has FCs for me.
ICS Stunner v4.3
+!
meethere said:
ICS Stunner v4.3
+!
Click to expand...
Click to collapse
Yeah dawg + 1
SHOT from my LOADED GT-N7000!!
"Only fill out what you know for sure"
but then in the end:
"* Required
Looks like you have a question or two that still needs to be filled out."
And all is required
Imilka cm9 build its amazing
Sent from my GT-N7000 using Tapatalk
midnote 3.0 vert smooth !!!!
and imilka's AOSP v08
but imilka's AOSP V08 no have toggle T.T
U can check out my in depth review of ICS Stunner
http://www.youtube.com/watch?v=2LhhZz_caNY&feature=youtube_gdata_player
Sent from my GT-N7000 using xda premium
nunomeneses said:
"Only fill out what you know for sure"
but then in the end:
"* Required
Looks like you have a question or two that still needs to be filled out."
And all is required
Click to expand...
Click to collapse
All 3 Parts are required: Version, Features, Bugs. But you can leave some answers in the bug-list blank.
Stunner if work flash player
at the moment midnote 3.1
+1 for ICS Stunner v4.3
Next0r said:
+1 for ICS Stunner v4.3
Click to expand...
Click to collapse
Any of you guys know if ICS Stunner fix the color banding or black crush issues?
I'm fairly new to the G-Note (previous SII owner) , and really annoyed by the colour rendering issues on this device.
Thanks.
MR.change said:
Any of you guys know if ICS Stunner fix the color banding or black crush issues?
I'm fairly new to the G-Note (previous SII owner) , and really annoyed by the colour rendering issues on this device.
Thanks.
Click to expand...
Click to collapse
Don't get me started about the colors of S2..they are crap..check out the comparisons on YouTube.. I have seen it with my eyes though..the colors on s2 are really dark n over saturated..Note is far more superior..
Sent from my GT-N7000 using xda premium
Techimplant said:
Don't get me started about the colors of S2..they are crap..check out the comparisons on YouTube.. I have seen it with my eyes though..the colors on s2 are really dark n over saturated..Note is far more superior..
Sent from my GT-N7000 using xda premium
Click to expand...
Click to collapse
As I'm sure you know, not all SAMOLEDs are created equal, most SIIs I've seen are dark and with a blue tint to them, but mine was very good actually ,OK so it was a bit over saturated (easily fixable via movie mode) , but it had no black crush issue , and all images displayed properly.
The note's display is fine but it's like having a grey filter over it, cause the gamma is just wrong, and anything with several shades of grey is non watchable and a mess.
Truth is ,I love the note and would never go back to normal phones again, but I just wish this little inconvenience could be solved.
P.s: I couldn't help but notice that you didn't answer my question , did ICS solve the black crush issue (that's what it's called right?)
underlines said:
...
Click to expand...
Click to collapse
dude - freeze the left hand pane so that as we scroll across, the names of the roms are still visible
I'm happy with Alba, Facebook randomly have a fc... Nice post
Enviado desde mi GT-N7000 usando Tapatalk
Which ROM is Unofficial port of ICS for N7000?
Cause i really need to use the SMemo all the time.
Love that app.
thnx.
chilschils41 said:
Which ROM is Unofficial port of ICS for N7000?
Cause i really need to use the SMemo all the time.
Love that app.
thnx.
Click to expand...
Click to collapse
In MIDNOTE and AlBa all the Samsung stuff, inluding Smemo, working properly.
In aosp not.
Stuners 4.5 now. But there are some incompatibilities for me:
- STK (sim toll kit) still didn't work
- Contact list search not really good
Anything else is ok!
I installed aosp, cm9 imilka, ics stunner but at moment I have a good feel with alba.
Ciao
Sent from my GT-N7000 using Tapatalk 2

[HELP] WifiOffDelayIfNotUsed wakelock

Hi. I am having this WifiOffDelayIfNotUsed wakelock showing up in BBS and accounting for a major part of my Android OS drain. Has anybody else had it and how did you get rid of it?
Stock D80210a unrooted
You do have the wifi off right? And you also have the wifi notification off?
{
"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"
}
Sent from my VS980 4G using Tapatalk
Got the same wakelock. Haven't figured it out though
Sent from my LG-D802 using Tapatalk
comk4ver said:
You do have the wifi off right? And you also have the wifi notification off?
View attachment 2494219
Sent from my VS980 4G using Tapatalk
Click to expand...
Click to collapse
No I have it on. Even when disabling WiFi I don't get the same option as you
I don't think it's something you have to worry about.
I have the same wakelock and my battery last 2 days with 4-5 hours screen on time.
Well you might be right. I'm mostly getting 4 hours of screen on time while others are getting about 6. There's also ActivityManager-Launch wake lock. Which software version are you on? I'm on D80210a and I intend on upgrading to 10f depending on which software you have. If you have a newer one I won't upgrade since increased battery life is the main goal of upgrading for me.
Sent from my LG-D802 using xda app-developers app
I am on 10D upgraded from10C via ota but same wakelocks and it doesn't bother me.
I'm getting the same wakelock as well.
The problem is that it's the number one processq in the Android system category.
Last night 3h after I charged it,there was a 1.5h wakelock...
Sent from my Nexus 7 using Tapatalk
Doesn't really get any better. I made a factory reset but it didn't help at all. Oh my god...
It accounts for 10 percent of the battery drain...
Sent from my LG-D802 using xda app-developers app
I've the same problem too, it seems that it's normal right now, maybe only google can solve this problem...
I'm on T-Mo and I have this wakelock as well. I think it's what's causing my WiFi Calling to disconnect when the phone sleeps. Would love to figure out how to disable whatever is causing this wakelock.
Same problem here... LG G2 D802 Stock 4.4.2 Rooted
Durocks.
Sent from my LG-D802 using Tapatalk
It's caused by the WiFi timer feature, which turns off WiFi after a specific interval, even if you disabled that feature. I used to remove that wakelock by modifying com.lge.wifiext.jar
Sent from my LG-D802 using xda app-developers app
metalboy94 said:
It's caused by the WiFi timer feature, which turns off WiFi after a specific interval, even if you disabled that feature. I used to remove that wakelock by modifying com.lge.wifiext.jar
Sent from my LG-D802 using xda app-developers app
Click to expand...
Click to collapse
Would you mind sharing how to do that? Thank you!
metalboy94 said:
It's caused by the WiFi timer feature, which turns off WiFi after a specific interval, even if you disabled that feature. I used to remove that wakelock by modifying com.lge.wifiext.jar
Sent from my LG-D802 using xda app-developers app
Click to expand...
Click to collapse
Please, tell how to do this? I'm having the same problem on my LG L90. The only thing that helps is reboot.
metalboy94 said:
It's caused by the WiFi timer feature, which turns off WiFi after a specific interval, even if you disabled that feature. I used to remove that wakelock by modifying com.lge.wifiext.jar
Sent from my LG-D802 using xda app-developers app
Click to expand...
Click to collapse
I know it's an old thread, but can you explain the method, please?
And what consequences does it have, if any?
The following requires adb and smali/baksmali knowledge. I apologize for the sparseness of this tutorial, it has been a long time since I last did this.
Here's the gist of it - pull com.lge.wifiext.odex from /system/framework, then decompile it with baksmali ( https://code.google.com/p/smali/wiki/DeodexInstructions ). In the decompiled folder go to com > lge >wifiext and open WifiOffDelayIfNotUsed.smali with a good text editor (I recommend Notepad++). Search the file for "acquire" - you will find a snippet of code similar to:
Code:
.line 155
:cond_12
:try_start_12
const-string v0, "WifiOffDelayIfNotUsed"
const-string v1, "startMonitoring"
invoke-static {v0, v1}, Landroid/util/Log;->d(Ljava/lang/String;Ljava/lang/String;)I
.line 156
sget-object v0, Lcom/lge/wifiext/WifiOffDelayIfNotUsed;->sWiFiStopWakeLock:Landroid/os/PowerManager$WakeLock;
invoke-virtual {v0}, Landroid/os/PowerManager$WakeLock;->acquire()V
.line 157
invoke-direct {p0}, Lcom/lge/wifiext/WifiOffDelayIfNotUsed;->GetWiFiStats()V
.line 158
iget-object v0, p0, Lcom/lge/wifiext/WifiOffDelayIfNotUsed;->mWifiHandler:Landroid/os/Handler;
const/4 v1, 0x1
The "acquire" line is where the wakelock is actually started. To disable it, just place a # in front of the line, so it will become:
Code:
.line 155
:cond_12
:try_start_12
const-string v0, "WifiOffDelayIfNotUsed"
const-string v1, "startMonitoring"
invoke-static {v0, v1}, Landroid/util/Log;->d(Ljava/lang/String;Ljava/lang/String;)I
.line 156
sget-object v0, Lcom/lge/wifiext/WifiOffDelayIfNotUsed;->sWiFiStopWakeLock:Landroid/os/PowerManager$WakeLock;
[COLOR="Red"]#[/COLOR]invoke-virtual {v0}, Landroid/os/PowerManager$WakeLock;->acquire()V
.line 157
invoke-direct {p0}, Lcom/lge/wifiext/WifiOffDelayIfNotUsed;->GetWiFiStats()V
.line 158
iget-object v0, p0, Lcom/lge/wifiext/WifiOffDelayIfNotUsed;->mWifiHandler:Landroid/os/Handler;
const/4 v1, 0x1
Now recompile the folder with smali to a .dex file. Pull com.lge.wifiext.jar from /system/framework and use IZArc/WinRAR to insert the .dex file into the .jar file. Make backups of com.lge.wifiext.jar and com.lge.wifiext.odex from your phone in case something goes wrong, then remove com.lge.wifiext.odex from the phone and push the new com.lge.wifiext.jar, overwriting the previous one. Set correct permissions, then reboot the phone. If everything went right, the WifiOffDelayIfNotUsed wakelock will be gone.
@metalboy94 Thanks a ton, man! :laugh:
Setting the router to give my phone a static IP fixes this issue.
@metalboy94 and others : does removing the wakelock actually improve any battery life ?

White Balance settings, post your preferred settings and model

Display lottery might be a hoax but different Xperia Z1 do have different white balance settings: some are warmer and others have tinge of blue tones. Lets post
- Firmware
- Model
- Your settings (with white balance app that u use)
I personally like whitish screen with slight tinge of blue (like HTC one)
The settings I use these settings to make screen Vibrant and everything looks really good.
{
"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"
}
I'm on C6902 BH903 .290 firmware [iHackers rom]
Lol? It's personally chose what settings you set... Eh... Every eyes are different... Please stop making this threads about nothing...
Wysłane z mojego C6903 przy użyciu Tapatalka
For me only activating whitebalance mod makes thing even a bit too blueish, but it's better than not using it so I keep all bars on 0
Sent from my C6903 using Tapatalk
taranfx said:
Display lottery might be a hoax but different Xperia Z1 do have different white balance settings: some are warmer and others have tinge of blue tones. Lets post
- Firmware
- Model
- Your settings (with white balance app that u use)
I personally like whitish screen with slight tinge of blue (like HTC one)
The settings I use these settings to make screen Vibrant and everything looks really good.
I'm on C6902 BH903 .290 firmware [iHackers rom]
Click to expand...
Click to collapse
Is your bootloader unlocked?
Sent from my Xperia Z1 using Tapatalk
Jiyeon90 said:
Is your bootloader unlocked?
Sent from my Xperia Z1 using Tapatalk
Click to expand...
Click to collapse
No. Its Locked
taranfx said:
No. Its Locked
Click to expand...
Click to collapse
How did you get root on .290? I see you have iHackers ROM, Can you post link to the instructions?
Sent from my Xperia Z1 using Tapatalk
Look at my post here http://forum.xda-developers.com/showthread.php?t=2586298&page=2
I followed YouTube how to videos by SHEM, look for his channel
As for the thread, I use 0 red 0 green 3 blue, to remove the yellow hue. That's all.. Before the ROM I used an app on Google play store called screen adjuster, use it if you don't have white balance in your settings, it does the same job
I'm using a Screen Adjuster app from the play store because I don't feel like rooting my device and installing the sony white balance app. The screen adjuster app I'm using right now doesn't change the onscreen navbuttons and it makes blacks kinda blue, so the notification bar looks very blue because of that. Does the official Sony white balance app suffer from the same problems?
Jiyeon90 said:
How did you get root on .290? I see you have iHackers ROM, Can you post link to the instructions?
Sent from my Xperia Z1 using Tapatalk
Click to expand...
Click to collapse
Install Oficial FTF for Firmware 14.1.G.1.534 (Ignore If you have a working Recovery) using flashtool.
Root Your Phone Using VRoot or KingoApp Root or Whatever You Like.
Backup TA Partition.
Copy the ROM to External SDCard.
Copy the Latest Flashable Dual Recovery to External SDCard.
Install Dual Recovery for LB.
Reboot into Recovery.
Make Sure to do a Wipe Data/Factory Reset before Installing the ROM.
Start the Installation. (Install Zip >> Choose Zip for External SDCard).
Install the ROM and then Dual Recovery.
Switch Off Your Phone (Do Not Reboot). Select No to Disable Flash Recovery Confirmation.
Install Kernel.ftf for C6903 (.290) or Kernel.ftf for C6902 (.290) with Flashtool to get compatible Kernel and Baseband.
Reboot and Enjoy.
In case u need detail, let me know
kantk20111 said:
I'm using a Screen Adjuster app from the play store because I don't feel like rooting my device and installing the sony white balance app. The screen adjuster app I'm using right now doesn't change the onscreen navbuttons and it makes blacks kinda blue, so the notification bar looks very blue because of that. Does the official Sony white balance app suffer from the same problems?
Click to expand...
Click to collapse
I was using ScreenAdjuster and was not satisfied with results. Thats y i rooted with LockedBootloader and installed custom ROM. With these white balance settings screen looks pretty awesome.
I thought I'd bump this thread back up again now that we all have the white balance sliders.
I use 98 Blue, 0 for the rest. I never realized how yellow my screen was before this.
kantk20111 said:
I thought I'd bump this thread back up again now that we all have the white balance sliders.
I use 98 Blue, 0 for the rest. I never realized how yellow my screen was before this.
Click to expand...
Click to collapse
I'm actually using 150 blue and it looks very similar now to how my HTC One looks.
jlevy73 said:
I'm actually using 150 blue and it looks very similar now to how my HTC One looks.
Click to expand...
Click to collapse
Yeah I bumped up mine to 120 blue. I find the HTC One way too cool color temperature and it's not very realistic, so I kept it a bit down.
I try to make it look like my iPad so I set it up like this: R=25, G=0, B=55. It's still a bit different and I can't seem to get rid of the yellow hue in some color tones but whites and greys are much better now.
Device model : CB512
Settings :
R : 0
G : 0
B :155
---------- Post added at 06:35 AM ---------- Previous post was at 06:33 AM ----------
jlevy73 said:
I'm actually using 150 blue and it looks very similar now to how my HTC One looks.
Click to expand...
Click to collapse
kantk20111 said:
Yeah I bumped up mine to 120 blue. I find the HTC One way too cool color temperature and it's not very realistic, so I kept it a bit down.
Click to expand...
Click to collapse
kantk20111 said:
I thought I'd bump this thread back up again now that we all have the white balance sliders.
I use 98 Blue, 0 for the rest. I never realized how yellow my screen was before this.
Click to expand...
Click to collapse
What are your device models? Just curious
red 0 green 0 blue 180..c6906
Sent from my C6906 using xda app-developers app
Red 30
Green 10
Blue 80
Revised again, too much blue washed other colours
Sent from my C6906 using xda app-developers app
kantk20111 said:
Yeah I bumped up mine to 120 blue. I find the HTC One way too cool color temperature and it's not very realistic, so I kept it a bit down.
Click to expand...
Click to collapse
Yeah I probably went overkill but it looks so much better than it did before this last update. Plus, all I had with me was the HTC One as a reference. I'll probably tone it down to 100-120 but for now it looks great.
nizarnoor said:
I try to make it look like my iPad so I set it up like this: R=25, G=0, B=55. It's still a bit different and I can't seem to get rid of the yellow hue in some color tones but whites and greys are much better now.
Click to expand...
Click to collapse
To counter yellow add more blue.
Adding red and allowing more yellow gives a warmer colour.
Anyone here with BH904......
What settings are you using?
Sent from my C6902 using xda app-developers app

Categories

Resources