Spell Checker Service Enabled on stock ROM DXLP9 - Galaxy S II Android Development

I have enabled ICS like system wide spellchecker service similar to in CM9.
I have modified system apks (framework.jar and settings.apk) attached with this email; and replace them in its respective location
Steps to update
1) go to task manager and clear memory
2) using root explorer copy and over-write Settings.apk in \system\app folder
3) using root explorer copy framework.jar in \system\framework\ folder
3) Reboot phone
4) go to Settings -> Language and Input -> spelling correction -> Android correction and select it
and all is set
Note: you need to have AOSP ICS keyboard to have this service; you can also install any third party spellchecker service as this feature is enabled in framework
This mod is tested on stock and wanamlite roms.
Please send me framework.jar and settings.apk to enable it on custom rom with modified framework and settings;
Thanks to Wanamlite for his APK mod tool

Reserved ...

just wondering, but how did you enable the spellchecker in the framework and settings apps? Did you have to change or add a lot of code? What exactly did you do to enable it on stock firmwares?

xxhorseriderxxx said:
just wondering, but how did you enable the spellchecker in the framework and settings apps? Did you have to change or add a lot of code? What exactly did you do to enable it on stock firmwares?
Click to expand...
Click to collapse
Not much code
Actually Samsung has removed Spellchecker Service Classes from framework; and also write a extension/override method to check if spell checked ; It was always returning false.
other change is in Settings.apk where they have removed a XML for Spellcheker setting xml from it.
Rest all code for spellchecker framework was there ; and its very tedious task for Samsung to remove every trace of it so they just make above changes to disable it ; rest spell checker things were present.
I just make changes to that method IsSpellCheckerEnabled() mehtod and returned True from it; with Samsung Code it always return False; and with Google code it checks from setting and return appropriate status;
other change in Settings.apk; I added that missing XML file;
that's it;
I haven't added missing spell checker service files; as it wil need also need a dictionary . however these classes were also available in CM9 keyboard; with dictionary. once framework is enabled it can utilize any of the available spellchecker service.

Thanks for this. Would like to report a little buy/annoyance though. There is a empty space just below the "Spelling correction" setting.
Also, how do I edit the dictionary of the custom words that I have added?

desean said:
Thanks for this. Would like to report a little buy/annoyance though. There is a empty space just below the "Spelling correction" setting.
Also, how do I edit the dictionary of the custom words that I have added?
Click to expand...
Click to collapse
This empty space is for user dictionary which can do editing of custom words; but this class is not available in Samsung ROM; and I am not getting enough time embed a new class/functionality in it; I will try to do it for next release;

I've been looking for this for a while and I would appreciate if you could modify mine's. I leave them attached.

Hi can you please enable the spell checker you talk about in your thread for those 2 files?! I'm dying for this!
This is arabic rom of wanamlite JHLP9!
You can also attach them in your OP so everyone can download them too!
Thank you a lot!

Life Engineer said:
Hi can you please enable the spell checker you talk about in your thread for those 2 files?! I'm dying for this!
This is arabic rom of wanamlite JHLP9!
You can also attach them in your OP so everyone can download them too!
Thank you a lot!
Click to expand...
Click to collapse
Wanamlite is already using my mode in his ROMs ; I am not sure about Arabic once;
Please check in Settings - > Language & Input -> Spell Correction

pawandeep said:
Wanamlite is already using my mode in his ROMs ; I am not sure about Arabic once;
Please check in Settings - > Language & Input -> Spell Correction
Click to expand...
Click to collapse
Nop man! I checked many times!
I don't want it to check my spelling in arabic! I want english and it's not implemented in this ROM! It looks that he kept it stock!
Please patch it for us

I disabled it on my latest V12, it causes a contacts name completion issue on Email app and maybe on some other apps.
EDIT : @Pawandeep : is there any way to disable it on some fields like browser address bar, search fields with completion enabled.

Life Engineer said:
Nop man! I checked many times!
I don't want it to check my spelling in arabic! I want english and it's not implemented in this ROM! It looks that he kept it stock!
Please patch it for us
Click to expand...
Click to collapse
I am am not sure about 11.9 or 12 release "English" and it was present; even I am using same rom.
anyways I will enable it you you ; have you tied files attached with first post; it was working fine on 11.7 of wanamlite; it should also work with latest rom also as he didnt change much;

pawandeep said:
I am am not sure about 11.9 or 12 release "English" and it was present; even I am using same rom.
anyways I will enable it you you ; have you tied files attached with first post; it was working fine on 11.7 of wanamlite; it should also work with latest rom also as he didnt change much;
Click to expand...
Click to collapse
To be honest bro i am not sure about using them in my ROM!
My file sizes differ from the one you are including in your post; besides it's a different rom base! It includes arabization even for the menus and everything (not only can read/write like any other ICS rom) so i think it won't work!
If it's a hard job for you man drop it! I'll live without it!

wanam said:
I disabled it on my latest V12, it causes a contacts name completion issue on Email app and maybe on some other apps.
EDIT : @Pawandeep : is there any way to disable it on some fields like browser address bar, search fields with completion enabled.
Click to expand...
Click to collapse
yes we can do that; but you have to modify that particular APK ;
we need to change the input type attributes of text as follows
android:inputType="textNoSuggestions"
and in case of multiline it should be
android:inputType="textMultiLine|textNoSuggestions"
probably in layout xmls or in code
hope this will fix this

Life Engineer said:
To be honest bro i am not sure about using them in my ROM!
My file sizes differ from the one you are including in your post; besides it's a different rom base! It includes arabization even for the menus and everything (not only can read/write like any other ICS rom) so i think it won't work!
If it's a hard job for you man drop it! I'll live without it!
Click to expand...
Click to collapse
not much efforts needed ; only constrain is I am not getting enough time to do job as my project is in critical stage :-(
I will try to do tonight

Hi, I have Galaxy s3 and there too there is no spell checker by default. Is it possible to do the same magic for S3 and post it. Thanks.

guptadh said:
Hi, I have Galaxy s3 and there too there is no spell checker by default. Is it possible to do the same magic for S3 and post it. Thanks.
Click to expand...
Click to collapse
yes you can enable it by modifying framework.jar and settings.apk as follows
Framework.jar
modify smali\android\widget\TextView.smali file for method "isSuggestionsEnabled" and change "const/4 v0, 0x0" to "const/4 v0, 0x1"
.method public isSuggestionsEnabled()Z
.locals 1
.prologue
.line 10372
const/4 v0, 0x1
return v0
.end method
Settings.apk
decompile and change location_settings.xml with attached file and repack/rebuild it. its that simple

Do I need to deodex before doing this?

Yes its required

I would really appreciate if you can elaborate a bit on the modification part. I am a normal user and don't know anything about this exercise. But the spell check option is the only reason makes me use CM. Please help.
EDIT: Does this work with all phones.. I have Galaxy Note.

Related

[Theme] Defy Sense (updated)

This is a port from here http://forum.xda-developers.com/showthread.php?t=874348.
-fixed white fonts on menus clock and date.
- Only for deodexed roms.
-Tested and working on BlueGinger 2.3 UI ROM for Defy.
-Install from recovery like a conventional .zip.
if you want the launcher go here: http://forum.xda-developers.com/showthread.php?t=784116
Hi, your theme doesn't work properly...
time clock and operator are still in black...not in white !
noxunas said:
Hi, your theme doesn't work properly...
time clock and operator are still in black...not in white !
Click to expand...
Click to collapse
sorry fixed now
Thanks for your answer.
=> it's OK for the clock.
=> KO for the operator (in black).
Why the buttons "Clear" and "Ongoing" are in English ? my ROM is French.
Thanks in advance
noxunas said:
Thanks for your answer.
=> it's OK for the clock.
=> KO for the operator (in black).
Why the buttons "Clear" and "Ongoing" are in English ? my ROM is French.
Thanks in advance
Click to expand...
Click to collapse
it is due to services jar i donĀ“t know how to edit the european one so i used the one based on tenfar chinese one which have english.
h there,,,so this does work on the motorola defy??? thanks
robertoespinoza_21 said:
h there,,,so this does work on the motorola defy??? thanks
Click to expand...
Click to collapse
yes but yor rom must be a deodexed one.
How do I install this? metamorph ?
Bihariel, can you try updating european version or say me what are the changes it includes? (services.jar)
Thanks
Hi!
Great Thanks for your Theme, it really looks nice and works fine for me.
Im running 2.34 Rom with deodexed and Jit Files right like the guide of Sorensiim.
I only have a few questions and small issues now...
Is it possible to merge this framework with another one, id take the original european one, so there will be more regions chooseable, especially Germany.
What files do i have to replace in the original 2.34 euro framework-res?
only the drawable folders? color folder?
The 2nd issue i have is the display style of the service provider name....in your screenshot its quite big and bright white, mine is small and grey...as you can see at my attached screenshot.
Everything else works fine, also the white text that shows up e.g. when installing something.
Ill attach the euro framework-res, as you can see its a lot bigger than yours, i think thats the missing region support. Perhaps anyone else also wants to try merging these two.
Update:
My tries to merge the two frameworks didnt really have great success...
I always copied the files from the sense framework into the original framework using winrar.
It always worked, but not everything was as it should be:
on the first try i only replaced the folders up to the last drawable one.....
The result was black text instead of white in the notification bar.
2nd try was to copy and replace everything except the resources.arsc
The Result was white text in the notification but the menu test when pressing the menu softkey on the homescreen now was black on black.
The display of the service provider as shown in the screenshot never changed.
If any1 has another idea, let me know....
Until then, ill live without having the german region and some minimal rests of english interface.
Hi Bihariel, can you tell me if its possible to uninstall this theme?. Or can I make a backup of current theme and then apply yours?
chaihg said:
Hi Bihariel, can you tell me if its possible to uninstall this theme?. Or can I make a backup of current theme and then apply yours?
Click to expand...
Click to collapse
yes, you should backup framework-res.apk and services.jar from the folder framework using root explorer.
bihariel said:
This is a port from here http://forum.xda-developers.com/showthread.php?t=874348.
-fixed white fonts on menus clock and date.
- Only for deodexed roms.
-Tested and working on BlueGinger 2.3 UI ROM for Defy.
-Install from recovery like a conventional .zip.
if you want the launcher go here: http://forum.xda-developers.com/showthread.php?t=784116
Click to expand...
Click to collapse
nice theme bro
keep the good work
i actually prefer blur to sense. blur still seems like its android where with sense it seems to loose that i think
My network signal is still black and so operator name. If there's a way to fix it?
Language is English, but locale set to russian, if this matters.
I installed it via recovery and got a reboot(???) on 1st boot, but now it works ok... gotta reboor it one more time for a check )) framework-res.apk
On a stock there is 5 sticks, and here is 4, when the signal is maximum, it is black. Would you fixed it?
And it is use many power. in powertutor without - 50m, with 1100m
My fimware is 2.34 official
good job nice looking
Working on Chinese froyo ?
Hi,
I prefer the sense jog things and unicolor notification icons over the default ones, however i really dislike the gradient bar. So i have slighlty modified the op's theme: I've put a few icons from gingerbread and fixed the black signal icon issue. The notification bar has also been changed (provider name is now readable).
To install, please first flash signed_sense_defy_fixed (see first post), then push the attached framework-res.apk to /system/framework using adb.
Edit: it seems like every time i update framework-res, the android market FC on me. To fix this issue, just clear market cache and then uninstall the app update (it will be reinstalled automatically from what i can see).

[PATCH][3/3] CM7 Pattern Unlock Fix - nightly 11

Hi everyone,
Those of you who like pattern unlock might have noticed how bad the layout is on the lockscreen in CM7.
The dots are huge and overlap each other and the thing is embarrassing to use
I never really used it for that reason... but a friend of mine really wanted to use it and was annoyed at CM7 for this eek. I was bored and had nothing to do so I went ahead and remade the layout for the unlock screen.
I wanted to post this in the development forum but I haven't made 10 posts yet and don't really know what to post
Here's what I did:
Lowered font size of clock
Lowered some margins
Resized the dots' .png's
Removed the space for custom message (I never used it, if you really want I might make another one including it) EDIT: Looks like the option isn't even there yet (at least in nightly #47) so it was redundant anyway
Get it here
Screenshot is attached
THIS WAS MADE FOR THE CM7 NIGHTLY BUILDS SPECIFICALLY MENTIONED BELOW!!!! IT PROBABLY WON'T WORK WITH OTHER NIGHTLIES!!!! USE AT YOUR OWN RISK!!!!!
Installation:
Just reboot into recovery, make a nandroid backup to be safe, flash the zip, reboot again.
Thanks to HCDR.Jacob for the awesome ROM
Feel free to hit Thanks if you like it!
CHANGELOG:
v1.2 [9/2]
[20/2] Added patch for new nightly #2
[17/2] Added patch for CM7 RC1
[14/2] No more exclusive packages for blue dots, the blue dots have been integrated into the Cyanbread theme and are included in the normal zips.
[12/2] All flashable zips can now be downloaded at my dropbox - saves a lot of uploading mess
[17/2] Added patch for nightly #59 framework
[11/2] Added patch for nightly #51 framework
Added patch for nightly #47 framework
Minor margin adjustments and made the status text one line only (found that some apps modify it and it can expand to more than one line, = ugly)
v1.1
[4/2] Added a patch with blue dots to go with cyanbread
[3/2] Added patch for nightly #35 framework
Added patch for nightly #32 framework (should work on #33 too?? test please??)
Added left and right margins to the unlock widget to make it square
Fixed odd coloured unlock sliders when not using pattern lock
Thank you!
ur welcome
works like a charm!
Thank you!
Beautiful mate, thanks!
Sent from my HTC Wildfire using XDA App
hey,
the lockscreen pattern looks really nice, but as already in your
description said, its only for nightly #19. When I tried to flash it
to #33 I got into a bootloop..
So my question is..
Which files of the framework did you exactly modify?
So i could try to overwrite them in the current nightly.. (just for testing)
flyfire04 said:
hey,
the lockscreen pattern looks really nice, but as already in your
description said, its only for nightly #19. When I tried to flash it
to #33 I got into a bootloop..
So my question is..
Which files of the framework did you exactly modify?
So i could try to overwrite them in the current nightly.. (just for testing)
Click to expand...
Click to collapse
I made a patch for the nightly 32 framework, see if it works on 33.
I don't remember the exact name of the xml file (it was long lol...), too lazy to find it again now (deleted the compiled xml without seeing the filename )
I'll find it if the nightly 32 patch doesn't work.
Nightly 32 didn't work for me.... the 4.2 kernel and #32 both gave me boot problems. (again, not enough posts to post in dev forum )
jacob seems to have fixed that ugly pattern some time ago http://review.cyanogenmod.com/#change,2638, but yours will probably still be better Why don't you let him know and push it upstream?
pan_pietrek said:
jacob seems to have fixed that ugly pattern some time ago http://review.cyanogenmod.com/#change,2638, but yours will probably still be better Why don't you let him know and push it upstream?
Click to expand...
Click to collapse
Thanks for the info. I didn't know
But I wasn't able to make out from that link whether that was for the pattern unlock screen, or the pattern-creating screen, or what (there was some stuff about password-unlock and code-unlock, and the changed files are in the Settings app)
Either way, I'll follow your advice and tell Jacob.
This will still be good for people stuck with #19 though (like me )
EDIT: on further viewing, that change proabably IS in settings. (choose lock pattern, lock pattern example, confirm lock pattern)
That's what it looks like. So it'd be even better if you could contact jacob to push it into git
Oh! Would you mind sharing that wallpaper?
pan_pietrek said:
That's what it looks like. So it'd be even better if you could contact jacob to push it into git
Click to expand...
Click to collapse
pm'ed him already
pan_pietrek said:
Oh! Would you mind sharing that wallpaper?
Click to expand...
Click to collapse
I got it from the pack in this thread
nhnt11 said:
Thanks for the info. I didn't know
But I wasn't able to make out from that link whether that was for the pattern unlock screen, or the pattern-creating screen, or what (there was some stuff about password-unlock and code-unlock, and the changed files are in the Settings app)
Either way, I'll follow your advice and tell Jacob.
This will still be good for people stuck with #19 though (like me )
EDIT: on further viewing, that change proabably IS in settings. (choose lock pattern, lock pattern example, confirm lock pattern)
Click to expand...
Click to collapse
Yep, that's a setting overlay, the path is obvious : overlay/packages/apps/Settings/res/layout/
(overlay folder => packages/apps (an app overlay) => Settings (name) => res/layout/ (will override default package files with those files => an overlay )
if you made your fix using apktool ((bak)smali / apkmanager), let jacob knows the value so he can make an overlay of it.
Else send him your overlay
edit: btw, good job for this, I actually though I would never use a Pattern lock since CM6 again, but now that we have a decent layout
So is an overlay like a file which overrides a system file to modify layout without changing the framework???
I don't know how to make one... I just dug around in the framework till I found the necessary file. I've told Jacob about it (waiting for a reply), maybe I'll just list all the changes I made and send another PM.
edit: yeah i used apktool, and thanks
Nightly #35.
Lock Pattern works like a charm. .
Thx for that.
updated to nightly 47
see changelog
will this still overwrite the lockscreen or will it appear after the lockscreen like pin/pw unlock?
i flashed cm7 #50
web flash swfs doesnot work.. any one have an idea?
i can't play web flashes..
grognaz said:
will this still overwrite the lockscreen or will it appear after the lockscreen like pin/pw unlock?
Click to expand...
Click to collapse
Sorry, no, this is only a layout mod.
infectedtr said:
i flashed cm7 #50
web flash swfs doesnot work.. any one have an idea?
i can't play web flashes..
Click to expand...
Click to collapse
Wrong thread?
thanks this worked great goes really nicely with the cyanbread
Sent from my HTC Wildfire using XDA App

[MOD][v0.0.3] re-light mod for Omega v11 Stock [absolute minimum]

!!---DISCLAIMER---!!
!---use at your own risk---!
mod/addon for:
OMEGA v11 Stock
Android 4.0.3
XWLP8 Android 4.03 (Date: 03/04/2012)
Modem XXLPS
I am already using Omega ROM v11, why do i need this crap?
if you are using Omega ROM v11 (Stock), then congratulations, you are using a very good ROM.
this mod makes it even smaller and fixes some nasty bugs.
it removes everything thats not needed to run the ROM. if you need any system app back, just push it to the phone from the original OMEGA v11 Stock rom!
Why not install the OMEGA v11 Stock ROM and remove the apps later?
if you start with all the apps, they leave traces, call home and other things.
so its better to start a ROM without these apps ever running, not even 1 time.
Where is my google maps, youtube, blabla app?
install it from the market (now called "Google Play")
Surely you stole this stuff, and you are very bad.
well, no. I have all the sources of the mods included.
Maybe i am very bad who knows
What is included?
the base for the modification is:
[ROM][XWLP8][21Apr] Omega v11 Stock
*) all apps that can be installed from the market are removed (like googlemaps, youtube ...)
*) removed Swype!!! (its the crappy version with extra umlaut-keys) if you need swipe you can install it later, or PM me for a version without extra umlaut keys
*) Phone.apk with callrecording (this time done the proper way, no FCs, compressed format for files)
*) Contacts.apk with configuable view, meaning no sms in call logs (this time done the proper way, no FCs. and settings are saved in prefs)
*) TouchWiz30Launcher.apk modded for clean startup with clean desktop (this time done the proper way)
*) moved Omega_Files_ICS_v0.1.apk from /system/app to /data/app (this thing should not be in /system/app)
*) exchanged the bootanim to NEXUS S (from Omega files), because it just looks nicer [ok, so stone me for that ...]
*) removed some annoying sounds
Charger_Connection.ogg
TW_Battery_caution.ogg
TW_Low_Battery.ogg
(so when you plugin the USB cable, it does not make that loud PING anymore)
*) removed lots of system apps/widgets and services
*) removed auto reboot after installing the ROM (you need to manually reboot after installing)
You have annoyed me long enough, how do I install this thing?
you need to download the BASE ROM (from indie's thread)
http://forum.xda-developers.com/showpost.php?p=22359679&postcount=1
download "Omega v11 Stock" !!! (it does not work for the other themes!!!)
unpack the zip file on your desktop PC
download omg11stock_patch.zip from
http://crazy5.net/omg11stock_patch.zip
unpack the omg11stock_patch.zip file into the SAME directory
answer "yes" to overwrite any files
pack the resulting directory to a new XXXX.zip file
push the XXXX.zip file to your SDCARD and flash via CWM (it does not wipe! but it is highly recommended that you WIPE !!)
Ok why do you not post the flashable zip file , why do i need to do this thing manually
i do not have persmission to post the resulting ROM.
the mod is based on ::indie:: OMEGA v11 Stock. so i can only post a mod, sorry.
If you like it, or use it, or i sets your cat on fire, please post some feedback or give thanks
reserved
thans i will try
Hi mate, I would like to try this but I use the ICS theme ROM, will it work with that??
bulla80 said:
Hi mate, I would like to try this but I use the ICS theme ROM, will it work with that??
Click to expand...
Click to collapse
i fear it will work, but you will have stock look on some applications
ask indie to support it, then i will make it for all future OMEGA roms
Have you ask indie ? Have you the permissions?
downloading tongiht..will report back!
i have NOT tested with OMEGA v11.1 (only with v11)
but i think it will work also, i may test tomorrow
karl999999 said:
i have NOT tested with OMEGA v11.1 (only with v11)
but i think it will work also, i may test tomorrow
Click to expand...
Click to collapse
How are you getting on with this Karl999999?
I repeat my question : Have you ask indie ? Have you the permissions?
If you haven't ask Indie, you will be banned.
sangosnip69 said:
I repeat my question : Have you ask indie ? Have you the permissions?
If you haven't ask Indie, you will be banned.
Click to expand...
Click to collapse
a) whats your problem dude?
b) i am in contact with indie, he knows about this post even before i posted it
c) this is just a mod, its NOT a rom. everything inside this zip is MY WORK!
if you ban this, then i dont know whats going on here ...
nickmax1 said:
How are you getting on with this Karl999999?
Click to expand...
Click to collapse
have not yet had the time. anybody else test this on v11.1 ?
i will try this weekend for sure (if there is not yet another version published)
can you explain what you mean exactly by extra umlaut keys on Omegas version of swype?? Is this for German language only??
nickmax1 said:
can you explain what you mean exactly by extra umlaut keys on Omegas version of swype?? Is this for German language only??
Click to expand...
Click to collapse
yeah its for german only. you can see it in this picture:
http://www.mobiflip.de/wp-content/uploads/2011/12/swype-razr-600x202.jpg
left normal, right with extra umlaut keys. and you have to use them.
or here also with extra umlaut keys:
http://static.androidnext.de/swype-3-2-6-screenshot.png
if you are looking for a swype version that is working fine on OMEGA v11 and v11.1
then PM me
Thanx for this lite version, i for one enjoy lite, even super lite(thinking of insanity)
It will work for v11.1 because the only thing you modified which changed in this version is the phone mod (you just won't have the full screen photo mod).
I took a look at your work, and your updater-script is REALLY messy...
You also delete the data/app folder which contains the user's apps. Not cool.
Some important files are also deleted, strange (here) ! Everything is still working after applying this ? ._.
It takes 5 minutes to theme the 3 apps modified, why didn't you do it ? ... If you modded these apps properly, it should be easy for you.
Here are the two zips themed for BB and ICS. I didn't test. It should work (as the stock one do).
Black blue
ICS
Joravis said:
I took a look at your work, and your updater-script is REALLY messy...
You also delete the data/app folder which contains the user's apps. Not cool.
Some important files are also deleted, strange (here) ! Everything is still working after applying this ? ._.
Click to expand...
Click to collapse
messy? not really.
yeah data/app is deleted because those can be installed from the market. not everybody want so much stuff installed
and yes everything works after applying this. thats the point. everything useless is removed. if you need any of those samsung bloatware things, dont use this mod

New MIUI 2.4.20 update for DS5!!!

Hi,there is a new MIUI 2.4.20 at the link below; if anyone can mirror it to us,i will be appreciated.My country forbid to access to 4shared
http://www.4shared.com/zip/8Lw4Mjve/MIUI_streak_2420_by_HARAM.html
whats the difference ? its the same Nitin is doing??
jitin02 said:
whats the difference ? its the same Nitin is doing??
Click to expand...
Click to collapse
I don't know all the differences but it is not same as the Nitin's miui; it includes something from Hpa and it includes volume plus.
I can't read Korean so i can't understand all the differences.
Testing.
Would you please mirror it to another file sharing server?
I can't access to 4shared
http://arleybarros.com/MIUI_streak_2.4.20_by_HARAM.zip
arleybarros said:
http://arleybarros.com/MIUI_streak_2.4.20_by_HARAM.zip
Click to expand...
Click to collapse
Thank you!
Did you flash it?
How is the results?
yes i did.
i really dont know much about miui roms, but it looks very stable so far.
Here's another link (to my dropbox) if needed:
http://dl.dropbox.com/u/43165183/MIUI_streak_2.4.20_by_HARAM.zip
Haven't tried it though.
Thanks to both of you!
Does it have US English language?
Agent5150 said:
Does it have US English language?
Click to expand...
Click to collapse
Yes,also the translation is perfect.
You could try editing build.prop i changed the entries ending in.
ko to en
KR to EN
I got this info from the another thread here, but cannot remember which one.
I'm guessing here but you could try US and us.
I have know idea if it will work.
pjg_pigeon said:
You could try editing build.prop i changed the entries ending in.
ko to en
KR to EN
I got this info from the another thread here, but cannot remember which one.
I'm guessing here but you could try US and us.
I have know idea if it will work.
Click to expand...
Click to collapse
Be sure,it will work.I tried these settings many times.
Seems to work fine. A few cool apps have been added. Overall looks nice.
English Language
This Rom already have EN language, Setting > System > Input and Language, certainly by Korean language in the firstboot. I don't know Korean but I remember position of setting button when I set up my DS.
This Rom's slower than the first 2.2.40 MIUI rom and non support Unicode font
I am running this since last night and extended MIUI settings app works. Battery life is perhaps the best I have seen on any of the MIUI versions I have used on my Streak so far....
sinan33 said:
Thanks to both of you!
Click to expand...
Click to collapse
Nice rom
Well, a short review after clean install of this ROM
FIXED/ENHANCEMENTS:
1) wifi issues
2) app drawer works
3) clear voice however loudness bug still exists
4) superSU instead of SU
5) Keyboard skin and customization
Bugs/broken:
1) DND mode force closes
2) Music player lyrics
3) LED notification still buggy
4) app drawer can't be enabled on boot
5) xiaomi passport backup still doesn't work
6) localization issues, not many languages supported
7) battery life seems to be better but may show different result after calibration
End result: uninstalled after 6 hrs of use, reverting to fake CM9
Sent from my DELL PHABLET using Tapatalk 2
awesome rom!
looks amazing...
themed it to ics
running well...
great tweaks here and there...
recommended!!!

{Mod /How to}Remove Wireless Charging Notification 2.04.605.2 710RD

Here is a mod that *should* disable wireless charging in the latest verizon update...
***I do not have a charger to test, but this is the same change I did in 1.15 for ViperDNA and it was successful...please make a backup before flashing! You may need to have services signature checking disabled to use this, ask your rom developer to do so***
changes systemui.apk
disables wireless charging popup/notification
works on stock deodex or odex
****this will overwrite any other mods you have installed for systemui***
Download
***Feel free to include this in your rom/project, just properly credit, thanks!
For 2.04 Verizon 2/15 OTA
remove_wc_2.04.zip: link removed til i fix it
md5:
For Developers Only!
how to apply this mod to your SystemUI project:
navigate to:
smali/com/android/systemui/statusbar/phone/PhoneStatusbarPolicy.smali
Click to expand...
Click to collapse
search for:
Code:
.method private final showWirelessChargingStatusForVzW
wholesale replace the method with this:
Code:
.method private final showWirelessChargingStatusForVzW(Landroid/content/Intent;)V
.locals 1
const/4 v0, 0x0
return v0
.end method
worked on 1.15 in viperDNA, no guarantees it works correctly in 2.04...some feedback would be helpful :angel:
(these seem like overly simplistic code changes in changing a 600 line method to the above, but should work fine...yes there are other ways to do it)
nitsuj17 said:
For Developers Only!
how to apply this mod to your SystemUI project:
navigate to:
search for:
Code:
.method private final showWirelessChargingStatusForVzW
wholesale replace the method with this:
Code:
.method private final showWirelessChargingStatusForVzW(Landroid/content/Intent;)V
.locals 1
const/4 v0, 0x0
return v0
.end method
worked on 1.15 in viperDNA, no guarantees it works correctly in 2.04...some feedback would be helpful :angel:
(these seem like overly simplistic code changes in changing a 600 line method to the above, but should work fine...yes there are other ways to do it)
Click to expand...
Click to collapse
Flashed the zip and the systemui force closes on boot and their is no longer a status bar on 2.04
Sent from my HTC6435LVW using xda app-developers app
MustafaHadaKing said:
Flashed the zip and the systemui force closes on boot and their is no longer a status bar on 2.04
Sent from my HTC6435LVW using xda app-developers app
Click to expand...
Click to collapse
tell me what the logcat says from the fc, because i pushed the systemui over viperDNA on 1.15 and it doesnt force close
its possible you may need signature checking disabled in services.jar (it is in viper)
nitsuj17 said:
tell me what the logcat says from the fc, because i pushed the systemui over viperDNA on 1.15 and it doesnt force close
its possible you may need signature checking disabled in services.jar (it is in viper)
Click to expand...
Click to collapse
I tried disabling signature checking in the services.jar but didn't seem to help. So that means one of two things 1.) I screwed up the services.jar 2.) thats not the problem. Thanks for your help. I'd be happy to post the modified services.jar if you think it would help.
zone23 said:
I tried disabling signature checking in the services.jar but didn't seem to help. So that means one of two things 1.) I screwed up the services.jar 2.) thats not the problem. Thanks for your help. I'd be happy to post the modified services.jar if you think it would help.
Click to expand...
Click to collapse
hrmm, ill look at it more when im on 2.04
does the statusbar crash on install, or when you start wireless charging?
nitsuj17 said:
hrmm, ill look at it more when im on 2.04
does the statusbar crash on install, or when you start wireless charging?
Click to expand...
Click to collapse
On install
Sent from my HTC6435LVW using xda app-developers app
nitsuj17 said:
hrmm, ill look at it more when im on 2.04
does the statusbar crash on install, or when you start wireless charging?
Click to expand...
Click to collapse
Crashes on bootup.
zone23 said:
Crashes on bootup.
Click to expand...
Click to collapse
interesting, flashed fine over 1.15....thanks for the feedback ill fix it up this week
After doing the OTA update to 2.0.4, I reflashed Viper and all the Viper updates back to 1.1.3, and it still works on the new firmware. Just sayin. But you probably already knew that.
Any other advantages to disabling signature checking? Is that something I should keep or dump it? Also anyway to check to see if its really disabled?
zone23 said:
Any other advantages to disabling signature checking? Is that something I should keep or dump it? Also anyway to check to see if its really disabled?
Click to expand...
Click to collapse
some mods to various apps or the manifest in them will prevent the apks / jars from working properly w/o signature checking disabled
if you tie a string to it you ll see it in logcat :silly:
also using apks from other phones (butterfly for example) require this
nitsuj17 said:
some mods to various apps or the manifest in them will prevent the apks / jars from working properly w/o signature checking disabled
if you tie a string to it you ll see it in logcat :silly:
also using apks from other phones (butterfly for example) require this
Click to expand...
Click to collapse
Interesting probably take me all day to figure out what that means, LOL..
is there a new systemui.apk and rosie for the new ota?
MustafaHadaKing said:
is there a new systemui.apk and rosie for the new ota?
Click to expand...
Click to collapse
yes, they are amongst the files modded
any chance someone wants to look at my services.jar and see if I edited it correctly? If not I understand..
Maybe this should be in its own thread but i'm gonna put it here anyway..
So this is the page I used to try and unsecured the services.jar
http://forum.xda-developers.com/showthread.php?t=1698352
and I thought I would attach the PackageManagerService.smali and someone could quickly look and see if I did it correctly.
and maybe not thats ok too..
zone23 said:
Maybe this should be in its own thread but i'm gonna put it here anyway..
So this is the page I used to try and unsecured the services.jar
http://forum.xda-developers.com/showthread.php?t=1698352
and I thought I would attach the PackageManagerService.smali and someone could quickly look and see if I did it correctly.
and maybe not thats ok too..
Click to expand...
Click to collapse
that should be fine...i do it a bit differently, but the mod looks ok
So after applying that service.jar I tried doing this:
http://themikmik.com/showthread.php?13250-Rosie-mods
and couldn't get it to work are those MODs stil good? I also assume that the moded service.jar would be needed for a rosie mod like that, correct?
Sense would just FC.
zone23 said:
So after applying that service.jar I tried doing this:
http://themikmik.com/showthread.php?13250-Rosie-mods
and couldn't get it to work are those MODs stil good? I also assume that the moded service.jar would be needed for a rosie mod like that, correct?
Sense would just FC.
Click to expand...
Click to collapse
Those are all ics mods, and the latter 2 specifically have no bearing on jellybean
Landscape is easy enough tho

Categories

Resources