Screen display direction adjusts to your angle of sights.
Hi XDA! I decided to write-step how to add a Smart rotation on SGS III. A similar setup is in the SGN II.
Maybe someone will come in handy
{
"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"
}
We shall start.
How to:
-Decompile SecSettings.apk and go to smali/com/android/settings/DisplaySettings
-Open this smali file with a text editor and look for
Code:
.line 352
- invoke-virtual {p0}, Lcom/android/settings/DisplaySettings;->getPreferenceScreen()Landroid/preference/PreferenceScreen;
-
- move-result-object v12
-
- iget-object v13, p0, Lcom/android/settings/DisplaySettings;->mSmartRotation:Landroid/preference/CheckBoxPreference;
-
- invoke-virtual {v12, v13}, Landroid/preference/PreferenceScreen;->removePreference(Landroid/preference/Preference;)Z
And just delete these lines
-Recompile and enjoy
Thanks - Credits:
Author sorg took of his firmware hope he does not mind.
Google translator
For Stock ROM LIB. Download and flash CWM
Smart Rotation Stock ROM LIB (Deodex)
Smart Rotation Stock ROM LIH (Deodex)
Smart Rotation Stock ROM DLJ4 (Deodex)
Препод said:
Screen display direction adjusts to your angle of sights.
Hi XDA! I decided to write-step how to add a Smart rotation on SGS III. A similar setup is in the SGN II.
Maybe someone will come in handy
We shall start.
How to:
-Decompile SecSettings.apk and go to smali/com/android/settings/DisplaySettings
-Open this smali file with a text editor and look for
Code:
.line 352
- invoke-virtual {p0}, Lcom/android/settings/DisplaySettings;->getPreferenceScreen()Landroid/preference/PreferenceScreen;
-
- move-result-object v12
-
- iget-object v13, p0, Lcom/android/settings/DisplaySettings;->mSmartRotation:Landroid/preference/CheckBoxPreference;
-
- invoke-virtual {v12, v13}, Landroid/preference/PreferenceScreen;->removePreference(Landroid/preference/Preference;)Z
And just delete these lines
-Recompile and enjoy
Google translator
Click to expand...
Click to collapse
can you make a CWM zip ?
czar22 said:
can you make a CWM zip ?
Click to expand...
Click to collapse
See the first post. Attach files to Stock ROM LIB.
So I curious why Samsung not enable this feature in the first place? It is part of smart feature they sell.
Sent from my GT-I9300
Sounds cool... I would try, but I am not downloading something from a site I can't read.
Can you upload it to somewhere with English language?
same here, can't even understand
---------- Post added at 10:55 PM ---------- Previous post was at 10:52 PM ----------
get it already
saw the number then type it
after type click the button below the bar to type the code
then you will saw a bar, untick it, then click that link to download
krs360 said:
Can you upload it to somewhere with English language?
Click to expand...
Click to collapse
Uploaded to mediafire.
Invalid or deleted file.
Sent from my GT-I9300 using xda premium
indeed link not working
Verstuurd van mijn GT-I9300 met Tapatalk
sarbe said:
Invalid or deleted file.
Sent from my GT-I9300 using xda premium
Click to expand...
Click to collapse
I have had problems with downloading. Now everything is fine
Link not working
Sent from my GT-I9300 using xda premium
jithendra194 said:
Link not working
Click to expand...
Click to collapse
Now everything is fine
Just flashed it but can't see a new feature being activated in settings
Sent from my GT-I9300 using xda premium
it's there under screen settings....although I don't know what those does because I don't see any difference ...
Verstuurd van mijn GT-I9300 met Tapatalk
Great work, OP. Trying it now
jayden2009 said:
it's there under screen settings....although I don't know what those does because I don't see any difference ...
Verstuurd van mijn GT-I9300 met Tapatalk
Click to expand...
Click to collapse
See here. It's not a quite visual change - but very useful one. Lets hope it works 100% in our device.!!
jayden2009 said:
it's there under screen settings....although I don't know what those does because I don't see any difference ...
Verstuurd van mijn GT-I9300 met Tapatalk
Click to expand...
Click to collapse
Can't find it under screen settings too
Sent from my GT-I9300 using xda premium
wow! working great on wanam rom so looong for this option. thank you!
jithendra194 said:
Can't find it under screen settings too
Sent from my GT-I9300 using xda premium
Click to expand...
Click to collapse
Check display settings.
Sent from my GT-I9300 using xda premium
sarbe said:
Check display settings.
Sent from my GT-I9300 using xda premium
Click to expand...
Click to collapse
Ik ....searched almost everywhere. ....didn't find....
Sent from my GT-I9300 using xda premium
I have the same issue. Don't have this feature after flash zip
Wysyłane z mojego GT-I9300 za pomocą Tapatalk 2
Related
Here is a stock SystemUI.apk pulled from Whitehawx stock deodexed tmobile rom that I modded and removed the AM / PM from status bar clock for a cleaner look!
Also making this with a center clock mod when time permits
{
"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"
}
^^yes that is a new theme in progress^^
Push the apk using adb, then adb reboot the phone and enjoy!
If you want to try this out yourself you must decompile the SystemUI.apk
Then go into the SystemUI.apk\smali\com\android\systemui\statusbar\policy folder
In the policy folder is the Clock.smali file
Open that file with Notepad++
Lines 34 - 43 look like this
Code:
# direct methods
.method static constructor ()V
.locals 1
const/4 v0, 0x0
sput v0, Lcom/android/systemui/statusbar/policy/Clock;->AM_PM_STYLE:I
return-void
.end method
Change line 38 to const/4 v0, 0x2
SO it should now look like this
Code:
# direct methods
.method static constructor ()V
.locals 1
const/4 v0, 0x2
sput v0, Lcom/android/systemui/statusbar/policy/Clock;->AM_PM_STYLE:I
return-void
.end method
Recompile your SystemUI.apk and the push to the phone
great share!Thanks for your work!
How do you make am pm small?
Evil welcome to the S3 brother
Sent from my SGH-T999 using Tapatalk 2
Lantek23 said:
Nick welcome to the S3 brother
Sent from my SGH-T999 using Tapatalk 2
Click to expand...
Click to collapse
Thanx!
Sent from my SGH-T999 using xda app-developers app
thekendog said:
How do you make am pm small?
Click to expand...
Click to collapse
You cant as far as I know of they share the same xml
Sent from my SGH-T999 using xda app-developers app
what about removing the clock itself?
chadster214 said:
what about removing the clock itself?
Click to expand...
Click to collapse
Delete the clock policy xml line in the Systemui.apk layout status_bar.xml
Like I did here http://forum.xda-developers.com/showthread.php?t=1711127
Sent from my SGH-T999 using xda app-developers app
evil1art said:
Delete the clock policy xml line in the Systemui.apk layout status_bar.xml
Like I did here http://forum.xda-developers.com/showthread.php?t=1711127
Sent from my SGH-T999 using xda app-developers app
Click to expand...
Click to collapse
I tried that but did not work..
chadster214 said:
I tried that but did not work..
Click to expand...
Click to collapse
What rom are you using? I can do it for you
Sent from my SGH-T999 using xda app-developers app
evil1art said:
What rom are you using? I can do it for you
Sent from my SGH-T999 using xda app-developers app
Click to expand...
Click to collapse
I'm using Whitehawkx stock deodexed rom
chadster214 said:
I'm using Whitehawkx stock deodexed rom
Click to expand...
Click to collapse
I will make one for you after work.
Sent from my SGH-T999 using xda app-developers app
evil1art said:
I will make one for you after work.
Sent from my SGH-T999 using xda app-developers app
Click to expand...
Click to collapse
thanks! I'm using Virtuous Ten Studio to edit the apk. Its a pretty nifty software. I was able to decompile and recompile successfully but for some strange reason it won't work. my statusbar just black out.
chadster214 said:
thanks! I'm using Virtuous Ten Studio to edit the apk. Its a pretty nifty software. I was able to decompile and recompile successfully but for some strange reason it won't work. my statusbar just black out.
Click to expand...
Click to collapse
Blacked out or not there? Either way its easy enough to do so I will hook you up later
Sent from my SGH-T999 using xda app-developers app
evil1art said:
Blacked out or not there? Either way its easy enough to do so I will hook you up later
Sent from my SGH-T999 using xda app-developers app
Click to expand...
Click to collapse
yeah.. the status bar is not there at all.. all I get is black bar accross along with my wallpaper.
chadster214 said:
yeah.. the status bar is not there at all.. all I get is black bar accross along with my wallpaper.
Click to expand...
Click to collapse
Thats just a error reading the xml
Sent from my SGH-T999 using xda app-developers app
evil1art said:
Thats just a error reading the xml
Sent from my SGH-T999 using xda app-developers app
Click to expand...
Click to collapse
its an error that happened during recompling? or the phone reading it incorrectly?
chadster214 said:
its an error that happened during recompling? or the phone reading it incorrectly?
Click to expand...
Click to collapse
An error from editing the xml or something missing in the xml and the phone cant read it now
Sent from my SGH-T999 using xda app-developers app
evil1art said:
An error from editing the xml or something missing in the xml and the phone cant read it now
Sent from my SGH-T999 using xda app-developers app
Click to expand...
Click to collapse
all I did was delete that line you highlighted in red from your post and made sure it matches.
chadster214 said:
all I did was delete that line you highlighted in red from your post and made sure it matches.
Click to expand...
Click to collapse
here you go http://d-h.st/Jti just rename it SystemUI.apk and push it to system/app
Call Recorder Mod
Unbelievable that this hasn't been done yet for our phone considering it is already built-in. The mod is relatively easy to implement. The custom library files weren't as easy to find. If you choose to do this yourself, please utilize the 2 library files included in the zip file. The recordings get saved to internal SD /Sounds.
Please have a current backup handy!
Have fun with it, let me know how you like it and of course let me know if you have any issues. Tnx - TD
{
"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"
}
Phone.apk - classes.dex
/com/android/phone/PhoneFeature.smali
Search around line 311:
Before:
Code:
const-string v5, "voice_call_recording"
invoke-static {[COLOR="Red"]v3[/COLOR]}, Ljava/lang/Boolean;->valueOf(Z)Ljava/lang/Boolean;
After:
Code:
const-string v5, "voice_call_recording"
invoke-static {[COLOR="Red"]v4[/COLOR]}, Ljava/lang/Boolean;->valueOf(Z)Ljava/lang/Boolean;
Disclaimer: This is for personal use only. Recording private conversations without the consent of both parties may not be legal in some areas.
Mod reloaded.
Sent from my SPH-D710 using xda premium
Nice disclaimer.. lol
Sent from my SPH-D710 using xda premium
---------- Post added at 10:30 PM ---------- Previous post was at 10:27 PM ----------
I'm on blue kuban will this mess up any of the themeing?? I'm asking because I tried your contacts tab mod and it installed the stock icons..
Sent from my SPH-D710 using xda premium
ImEVO said:
Nice disclaimer.. lol
Sent from my SPH-D710 using xda premium
---------- Post added at 10:30 PM ---------- Previous post was at 10:27 PM ----------
I'm on blue kuban will this mess up any of the themeing?? I'm asking because I tried your contacts tab mod and it installed the stock icons..
Sent from my SPH-D710 using xda premium
Click to expand...
Click to collapse
Thanks.
It should but you will lose the theming. Back up the entire rom first just in case.
Sent from my SPH-D710 using xda premium
Do you know if this works with the 4tab contacts workaround?
---------- Post added at 08:12 AM ---------- Previous post was at 07:59 AM ----------
timmetal6669 said:
Do you know if this works with the 4tab contacts workaround?
Click to expand...
Click to collapse
Edit, confirmed working with the 4 tab workaround. Also, nice job bro. I saw this a few weeks ago and kept it for personal use. Its pretty handy.
timmetal6669 said:
Do you know if this works with the 4tab contacts workaround?
---------- Post added at 08:12 AM ---------- Previous post was at 07:59 AM ----------
Edit, confirmed working with the 4 tab workaround. Also, nice job bro. I saw this a few weeks ago and kept it for personal use. Its pretty handy.
Click to expand...
Click to collapse
What other mods are you sitting on over there Tim? The music toggle would be nice but that one is really difficult to port over and I haven't had any luck with it yet. :crying:
tdunham said:
Call Recorder Mod
Unbelievable that this hasn't been done yet for our phone considering it is already built-in. The mod is relatively easy to implement. The custom library files weren't as easy to find. If you choose to do this yourself, please utilize the 2 library files included in the zip file. The recordings get saved to internal SD /Sounds.
Please have a current backup handy!
Have fun with it, let me know how you like it and of course let me know if you have any issues. Tnx - TD
Phone.apk - classes.dex
/com/android/phone/PhoneFeature.smali
Search around line 311:
Before:
Code:
const-string v5, "voice_call_recording"
invoke-static {[COLOR="Red"]v3[/COLOR]}, Ljava/lang/Boolean;->valueOf(Z)Ljava/lang/Boolean;
After:
Code:
const-string v5, "voice_call_recording"
invoke-static {[COLOR="Red"]v4[/COLOR]}, Ljava/lang/Boolean;->valueOf(Z)Ljava/lang/Boolean;
Disclaimer: This is for personal use only. Recording private conversations without the consent of both parties may not be legal in some areas.
Click to expand...
Click to collapse
I'm not sure how to install this? Can you give an old gray haired man some simple instructions?
jtsv said:
I'm not sure how to install this? Can you give an old gray haired man some simple instructions?
Click to expand...
Click to collapse
The mod zip file at the bottom of the first post is flashable in system recovery just like a custom rom. This will only work on a rooted phone with stock based ICS with a custom recovery already installed.
The how-to is there if someone that knows how to program can do it themselves. The zip file is the completed product ready to go.
Sent from my SPH-D710 using xda premium
Awesome! Don't know how to program however know how to flash zips in recovery. Looking forward to checking it out!
Sent from my SPH-D710 using xda app-developers app
Is this odexed or deodexed?
Sent from my SPH-D710 using xda premium
JonSCSL said:
Is this odexed or deodexed?
Click to expand...
Click to collapse
All mods and themes you will find are for deodexed only unless specified. That is why 99.9% of all custom roms are deodexed, because they are easy to customize.
Does this remove the add a call (3way-conference) button? Or does it place it somewhere else like a menu?
Sent from my SPH-D710 using xda premium
JonSCSL said:
Does this remove the add a call (3way-conference) button? Or does it place it somewhere else like a menu?
Sent from my SPH-D710 using xda premium
Click to expand...
Click to collapse
As far as I know it just replaces it. I don't know enough on how to put it elsewhere and it may not have been thought of since 3 way calling isn't necessarily a popular feature.
Is there a version of this for FK23?
mewikime said:
Is there a version of this for FK23?
Click to expand...
Click to collapse
Yes, but only for deodexed. I did one in this thread:
http://forum.xda-developers.com/showthread.php?t=2023404
Didn't work for me. I'm running TW rom, Sprint, FI27, ICS....
Thanks for providing the OEM dialer.
Please give thanks/credit if you use this in your ROM - Donations are also appreciated!
Some may argue this but I find the connection optimizer to be spyware'ish with everything it tracks does in the background. I can handle my WiFi connections myself and do not need my phone automatically jumping onto an open WiFi access point. I prefer to use a VPN connection when using open WiFi so all of my traffic is encrypted and prevents the script kiddies from sniffing my traffic in public places.
Connection Manager still runs even if you turn it off/opt-out. This fix will allow you to remove the ConnectionManager.apk from your device without causing force closes when going into your Mobile Networks settings.
Decompile SecPhone.apk (there a few files that need to be corrected to recompile. Search XDA as there are already threads on this)
Edit SecPhone/smali/com/android/phone/PhoneFeature.smali and modify the one line:
Code:
const-string v8, "sprint_connections_optimizer"
invoke-virtual {v5}, Ljava/lang/Boolean;->booleanValue()Z
move-result v1
if-nez v1, :cond_2d
invoke-virtual {v7}, Ljava/lang/Boolean;->booleanValue()Z
move-result v1
if-eqz v1, :cond_50
:cond_2d
[COLOR="Red"]--const/4 v1, 0x1[/COLOR]
[COLOR="Green"]++const/4 v1, 0x0[/COLOR]
:goto_26
If you like this MOD and would like to see others please consider a donation via my profile. I encourage other developers to share their work in How-To's as well.
You can also disable the program through Settings > Applications > All and choose disable. Does not require Root.
Sent from my SPH-L900 using xda app-developers app
xKrisx said:
You can also disable the program through Settings > Applications > All and choose disable. Does not require Root.
Sent from my SPH-L900 using xda app-developers app
Click to expand...
Click to collapse
Correct but I prefer the method of not being there at all.
jd14771 said:
if anybody get a chance to do this and is kind enough to mirror a copy of the modified sec.phone.apk, that would be much appreciated. cheers.
Click to expand...
Click to collapse
I have one here (includes the roaming notification removal as well).
http://forum.xda-developers.com/showpost.php?p=38866068&postcount=158
Freeze it with Titanium
MikeyLee said:
Freeze it with Titanium
Click to expand...
Click to collapse
Or how about have the ROM Dev not include it? No freezing required.
I usually remove it with titnium backup.. are there other files that need to be removed as well?
Sent from my SPH-L900 using xda premium
z31k said:
I usually remove it with titnium backup.. are there other files that need to be removed as well?
Sent from my SPH-L900 using xda premium
Click to expand...
Click to collapse
From the OP:
This fix will allow you to remove the ConnectionManager.apk from your device without causing force closes when going into your Mobile Networks settings.
Awesome, thanks!
Sent from my SPH-L900 using Tapatalk 2
Awsome job again thanks again for all of the hard work
Sent from my SPH-L900 using xda premium
Yea digi great work yet again, appreciate you sharing it as well... Thank you as this type of thing is a big peeve of mine as well.
Glad to see you guys enjoy these. I have a few other ones planned. It makes things easier for devs to focus on additional features and not reinventing the wheel plus we have them documented for future ROM bases.
If anyone has any suggestions for mod guides let me know and I'll look into doing them.
digiblur said:
Glad to see you guys enjoy these. I have a few other ones planned. It makes things easier for devs to focus on additional features and not reinventing the wheel plus we have them documented for future ROM bases.
If anyone has any suggestions for mod guides let me know and I'll look into doing them.
Click to expand...
Click to collapse
Thank you for how to's, I hate it when someone posts just the file. It helps out on those of us with less experience!
Sent from my SPH-L900 using Tapatalk 2
Worked great thanks....
sent From My LabRats Edition Galaxy Note 2
{
"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"
}
Digi do you have gtalk? I would like to pick your brain if you don't mind.
check out our rom website, http://updater.team-nocturnal.com/labrats/
fryingpan0613 said:
Digi do you have gtalk? I would like to pick your brain if you don't mind.
check out our rom website, http://updater.team-nocturnal.com/labrats/
Click to expand...
Click to collapse
I guess I need to finally install this as someone else asked me the same thing.
Sent from my little Note2
digiblur said:
I guess I need to finally install this as someone else asked me the same thing.
Sent from my little Note2
Click to expand...
Click to collapse
It's the easiest way to talk to people without giving your number to a million people
check out our rom website, http://updater.team-nocturnal.com/labrats/
digiblur said:
I guess I need to finally install this as someone else asked me the same thing.
Sent from my little Note2
Click to expand...
Click to collapse
Agreed! Hit me up when you do
Sent from my SPH-L900 using xda premium
Installed it and it seems to be working.
Sent from my little Note2
the_plattypus said:
Agreed! Hit me up when you do
Sent from my SPH-L900 using xda premium
Click to expand...
Click to collapse
NO HOMO!!!:highfive:
First lets give a little shout out to digiblur for the original mod found on the NoteII.
That thread can be found here - http://forum.xda-developers.com/showthread.php?t=2188928
So what I did is modify the smali coding to make this work for us on the Galexy SIII. As I found it to be a little different, I decided to write this for anyone who wanted this mod, but could not figure it out trying to use digiblurs method. I also find this to be a very annoying little feature....and a battery sucker as well. And because simply removing and or freezing the app will cause a fc in Settings/Mobile Networks.
This tut. will assume already that you know how to use apktool and or smali/baksmali.
Decompile SecPhone.apk or baksmali classes.dex from SecPhone.apk
Navigate to and edit smali/com/android/phone/PhoneFeature.smali
There are three lines that must be edited.
Code:
const-string v6, "sprint_connections_optimizer"
invoke-virtual {v7}, Ljava/lang/Boolean;->booleanValue()Z
move-result v2
[COLOR="Red"]--if-nez v2, :cond_58[/COLOR]
[COLOR="Lime"]++if-nez v2, :cond_60[/COLOR]
invoke-virtual {v9}, Ljava/lang/Boolean;->booleanValue()Z
move-result v2
[COLOR="Red"] --if-nez v2, :cond_58[/COLOR]
[COLOR="Lime"]++if-nez v2, :cond_60[/COLOR]
invoke-virtual {v10}, Ljava/lang/Boolean;->booleanValue()Z
move-result v2
[COLOR="Red"]--if-nez v2, :cond_58[/COLOR]
[COLOR="Lime"]++if-nez v2, :cond_60[/COLOR]
const/4 v2, 0x0
And thats it. Basically what your are doing is telling the switch to point from :cond_58 to :cond_60
:cond_58 = const/4 v2, 0x1
:cond 60 = const/4 v2, 0x0
Recompile SecPhone.apk / smali classes.dex
Now you can delete the ConnectionManager.apk from system/app folder without any fc in your settings.
Enjoy...:good:
Please give thanks/credit if you use this in your ROM
Heres a flashable zip for those apktool impaired....
http://d-h.st/cIW
First. Yea yuh!
Sent from my SPH-L710 using xda premium
Frostacious said:
First. Yea yuh!
Sent from my SPH-L710 using xda premium
Click to expand...
Click to collapse
lol....Well hopefully you will find this useful.
Sent from my SPH-L710 using xda app-developers app
Thanks gruesome wolf. I've tried to uninstall and got force closes.but I will try this thanks again
Sent from my SPH-L710 using xda premium
This works great thanks
Sent from my SPH-L710 using xda premium
Awesome as always Gruesome! :good:
rompnit said:
Awesome as always Gruesome! :good:
Click to expand...
Click to collapse
Thanks man. That connection optimizer drives me absolutely crazy.
Sent from my SPH-L710 using xda app-developers app
.zip please. Lol
Sent from my SPH-L710 using xda app-developers app
I'm definitely going to have to do this. Thanks a lot. That thing was annoying.
Sent from my SPH-L900 using Tapatalk 2
TheDudeAbides said:
.zip please. Lol
Sent from my SPH-L710 using xda app-developers app
Click to expand...
Click to collapse
zip added to op
gruesomewolf said:
Heres a flashable zip for those apktool impaired....
http://d-h.st/cIW
Click to expand...
Click to collapse
That would be me Thanks!
**Does whatever a spider can...
LIKE A BOSS!**
soo.... im guessing this is for MC3 only or would it work on MB1?
therenegadenail said:
soo.... im guessing this is for MC3 only or would it work on MB1?
Click to expand...
Click to collapse
Should work just fine in mb1 also, backup before flashing just in case though... BUT... I have mine frozen and don't get any fc, the option for connection optimizer is just grayed out....
{
"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"
}
either way though, great find!
SPRINT GS3 FAQ
GRU should we unfreeze or reinstall it before the flash? Also I'm on the MOAR ROM should it be fine with this ROM?
Sent from my SPH-L710 using xda premium
5FOOTER said:
GRU should we unfreeze or reinstall it before the flash? Also I'm on the MOAR ROM should it be fine with this ROM?
Sent from my SPH-L710 using xda premium
Click to expand...
Click to collapse
Moar is still mb1 based. ...so I'm not sure about that. Make a back up first. The script will delete the connection manager from system app for you.
Sent from my SPH-L710 using xda app-developers app
gruesomewolf said:
zip added to op
Click to expand...
Click to collapse
Odexed? Deodexed?
5FOOTER said:
GRU should we unfreeze or reinstall it before the flash? Also I'm on the MOAR ROM should it be fine with this ROM?
Click to expand...
Click to collapse
Just flashed using MOAR V2.4 worked just fine.
Sent from my SPH-L710 using Tapatalk 2
Thanks for the zip.. Kuzz like you mentioned I'm impaired ..
Funny, I first stumbled across the FC in networks menu yesterday and was meaning to research it today. I completely deleted C manager when I installed the rom.
// Galaxy S3 SPH-L710 // KT747 ktoonservative-NOOP 1728Mhz + TK Mod + scaling tweaks // entropy + DNS // fsTRIM // MOAR // sent from xda premium
DurhamHusker said:
Odexed? Deodexed?
Click to expand...
Click to collapse
Deodexed
Sent from my SPH-L710 using xda app-developers app
Change log :
Honami Conversations :
- Fix save draft wrong notiffication.
- Fix message small notiffication icon.
Honami SystemUI :
Coming soon.
Old :
Home :
- transparent dock.
Lockscreen :
V1 :
- without carrier and battery charging icon.
- slide in bottom.
- background and slider full transparent.
- new walkman icon.
V2 :
- clear without anything
Phonebook :
- big contact picture.
- more big in contact picture detail.
How to install :
- Use Root Explorer.
- Replace the original apk in system > app > with the one I uploaded and set permission to rw--r--r.
- Reboot and enjoy.
Screenshots :
Honami Conversations :
Look here.
Honami SystemUI :
Coming soon.
Old :
Home :
{
"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"
}
Lockscreen :
V1 :
V2 :
Black Phonebook :
White Phonebook :
Download Honami Conversations :
Honami Conversation Black (2.0 MB)
Honami Conversation White (2.1 MB)
Download Honami SystemUI :
Coming soon.
Old :
Download Home :
Home (1.9 MB)
Download Lockscreen :
V1 Lockscreen Like Stock (307 KB)
V1 Lockscreen Clock Always Show (307 KB)
V2 Lockscreen Clear Without Anything (307 KB)
Download Phonebook :
Phonebook-Black.apk (3.9 MB)
Phonebook-White.apk (3.7 MB)
Credits :
@niaboc79
@serajr
where the link:victory:
carlito-lt26i said:
where the link:victory:
Click to expand...
Click to collapse
Sorry forget link..
Sent from my LT26i using xda premium
Can I mirror on drive?? I got 105gb. I'll give you a link
Sent from my LG-LS970 using xda app-developers app
jonahly said:
Can I mirror on drive?? I got 105gb. I'll give you a link
Sent from my LG-LS970 using xda app-developers app
Click to expand...
Click to collapse
No thanks.. I have much space..
Sent from my LT26i using xda premium
Maybe white wersion. Plz
Wysyłane z mojego LT26i za pomocą Tapatalk 2
mario_666 said:
Maybe white wersion. Plz
Wysyłane z mojego LT26i za pomocą Tapatalk 2
Click to expand...
Click to collapse
Can u send for me white version?
Sent from my LT26i using xda premium
From existenz v2. http://www.mediafire.com/?2ngnrpshpy7r4bk
Wysyłane z mojego LT26i za pomocą Tapatalk 2
Mr. Khan said:
No thanks.. I have much space..
Sent from my LT26i using xda premium
Click to expand...
Click to collapse
What if yours goes down
Sent from my LG-LS970 using xda app-developers app
mario_666 said:
From existenz v2. http://www.mediafire.com/?2ngnrpshpy7r4bk
Wysyłane z mojego LT26i za pomocą Tapatalk 2
Click to expand...
Click to collapse
added in op.. :highfive:
This was the only thing that was missing out on Existenz.
Thanks man.
Can you also modify the no. Of blinds when touched?
gopiraj_m said:
This was the only thing that was missing out on Existenz.
Thanks man.
Can you also modify the no. Of blinds when touched?
Click to expand...
Click to collapse
what u mean?
lockscreen blinds?
Mr. Khan said:
what u mean?
lockscreen blinds?
Click to expand...
Click to collapse
Oh yes!
I didnt mention, lol
gopiraj_m said:
Oh yes!
I didnt mention, lol
Click to expand...
Click to collapse
how many blinds u want?
Mr. Khan said:
how many blinds u want?
Click to expand...
Click to collapse
like 10.
gopiraj_m said:
like 10.
Click to expand...
Click to collapse
this mod to 10 blinds.. Here :fingers-crossed:
Mr. Khan said:
this mod to 10 blinds.. Here :fingers-crossed:
Click to expand...
Click to collapse
Thanks but doesn't look that good.
I'll go on with the original one anyway.
maybe a white version of conversations ? :$
gopiraj_m said:
Thanks but doesn't look that good.
I'll go on with the original one anyway.
Click to expand...
Click to collapse
Hahaha..
LaceeWearsPrada said:
maybe a white version of conversations ? :$
Click to expand...
Click to collapse
Yes, if u send for me conversations.apk.
Sent from my LT26i using xda premium
Mr. Khan said:
Hahaha..
Yes, if u send for me conversations.apk.
Sent from my LT26i using xda premium
Click to expand...
Click to collapse
What? Why? I don't understand... You uploaded it in black
Sent from my LT28h using XDA Premium HD app