Related
http://bbs.gfan.com/android-575451-1-1.html
ignore the link at the top that one is mostly chinese the english version is provided hear thanks to da900
DOWNLOAD LINK: http://www.multiupload.com/PVZRB1NRHK
P.P.S. All you do with this pack is on your own risk. I am not responsable for any damages of your phone.[/QUOTE]
please aware that this rom is only contain about 20% english , most of words are chinese
u should be able to change it to english in the language and input settings
Is this newer than the QnD 1.2.4 rom?
Look at the number lol. 1.2.11 > 1.2.4
no that one has chinese this one does to thou dnt flash nevermind
dictionary said:
Look at the number lol. 1.2.11 > 1.2.4
Click to expand...
Click to collapse
XD I was thinking 4 > 1.
here's the changelog:
MIUI 1.2.11 version update:
Phone:
Add in the phone settings to add "call from the sensors used in the process" of setting
Fix the call log to the Canadian people through IP numbers to send SMS / MMS will bring IP prefix, resulting in the issue could not be sent
Theme:
Add support for setting alarm
Ringing in the new system comes with the option "mute"
Optimize the system comes with the choice of ring tones
Repair some of the theme of the correct format does not show the problem package
System Update:
Add WIFI connection can support the Ad-Hoc (peer to peer) network
Press the Backspace key fixed the problem miscarriage of justice
Local Backup:
Installed on the sd card repair program can not be the problem with the backup and recovery
Click to expand...
Click to collapse
terrelltp said:
no that one has chinese this one does to thou dnt flash nevermind
Click to expand...
Click to collapse
What? Slow down and make sense lol. Are you saying that you screwed up, and there is next to no English in the build?
terrelltp said:
u should be able to change it to english in the language and input settings
Click to expand...
Click to collapse
i repeat :
this rom does contain 20% of english translation only !
Even you change to english language :
your 80% of menu still display "Chinese".
So, this is useless unless you understand simplified Chinese. I'll wait on g4rb4g3 to release a port.
Sent from my htc.desireZED
Weren't there language packs you could install
Sent from my HTC Vision
Device Specific Language Packs
I think that language packs are device specific.. I haven't been able to find a language pack on the net for the G2.. though I did manage to a how to guide but I'm green to this stuff..
If somebody out here is familiar with how to do this guide and create a language pack for the G2 for us.. that would be helpful.
djmcnz said:
Okay guys, there's a lot of demand for this rom and for language packs but not yet a lot of people who know how to make the packs. Whilst I set up the crowdin translation project I can not create or maintain language packs.
So, here's a summary of the instructions required to create a language pack for MIUI (indeed for any app/rom). You need a collection of tools and a little patience but the process isn't too difficult so do give it a go.
Also note that this summary includes generalisations for brevity. These instructions assume you have a deodexed rom.
Introduction
For the purposes of this post language information is stored in XML strings in files on the Android system. In the case of MIUI and these instructions we will be dealing with .apk files (applications).
Within the apk files is a resources directory (/res) and within this are various values directories, there is a default values directory (/res/values) and alternative language values directories (e.g. /res/values-DE and /res/values-IT).
If the rom is set to use it's default language it will read values from /res/values although these may NOT be in English. In MIUI, all of the common Android ASOP values in /res/values are English but the (additional) custom MIUI strings are in Simplified Chinese.
If you select a different language in the ROM than the default then the appropriate values directory will be searched. If a suitable string that matches your language selection is found in the alternative /res/values-xx directory then that string will be used instead. If an alternative does not exist then the default will be used.
Example:
Code:
/res/[COLOR="red"]values[/COLOR]/strings.xml
<stop_button_text>[COLOR="Red"]Stop[/COLOR]</stop_button_text>
/res/[COLOR="red"]values-DE[/COLOR]/strings.xml
<stop_button_text>[COLOR="red"]Halt[/COLOR]</stop_button_text>
/res/[COLOR="red"]values-IT[/COLOR]/strings.xml
<stop_button_text>[COLOR="red"]Basta[/COLOR]</stop_button_text>
In this example, if the language is set to the default the word "Stop" will be used, if it is set to German the word "Halt" will be substituted in, likewise "Basta" for Italian.
So, to add languages to a rom (or app) or to make an app multi-lingual you need to either change the default strings in /res/values/strings.xml to the ones you want to use or, and this is the preferable approach, add a /res/values-xx/strings.xml with the translations you want. The first approach will work (changing the default strings) but is not recommended because the Android Open Source Project and Android development in general, defaults to English. It's best to use the built in language substitution capabilities of Android rather than to work around them. Indeed, if the MIUI devs actually added their strings in English to /res/values/strings.xml and the Chinese equivalents in the appropriate directory this rom would already be in English!
Adding Languages
To add a translation file (strings.xml) to an apk you need to:
decode the apk
create a language directory
add the translation files
recompile the strings
add the new strings to the apk
Which all sounds a little daunting but it's really quite straight-forward, rewarding when you see the result and a good way to understand how parts of Android work. Here's how you can do it.
1. decode the apk
You will need the excellent apktool from brut.all which you can get from the link below. apktool is relatively easy to use but includes some little tricks so you will need to read the wiki and thread about it.
Do NOT just post problems about apktool if you can't get it to work. The tool DOES work so if it's not decoding (or encoding) your apps correctly then you're probably doing something wrong. If you start with this understand BEFORE you ask for support you'll get a lot more help...
apktool: http://code.google.com/p/android-apktool/
wiki: http://code.google.com/p/android-apktool/w/list
thread: http://forum.xda-developers.com/showthread.php?t=640592
Please make sure you run the following command to include the MIUI framework in apktool. You only need to do this once for each framework. If apktool works with one rom and not the next then (re)install the framework for that rom.
Code:
apktool if framework-res.apk
Where framework-res.apk is the one from the rom you are working with. Make sure apktool can find (the correct) framework-res.apk before you run this command.
This thread is not for apktool support.
Now, before you proceed, decode a simple app from MIUI (such as updater.apk) using apktool, do not make ANY changes, then re-encode it using apktool. For example:
Code:
apktool d Updater.apk ./decoded/
apktool b ./decoded/ new_updater.apk
Use the -v (verbose) flag in apktool if you have problems and need to diagnose further.
Remember, Android uses a case-sensitive file system, make sure your capitalisation is correct.
Typically you will not be able to install this apk because it is not signed so if you want to test the process further you can now just try step 5 below using the two apks you have.
2. create a language directory
Assuming you can decode/encode now, this is the easy bit. For your decoded app, navigate to the directory it was decoded in, then to the /res/ directory and simply create an empty directory for your language (e.g. /values-FR/) - use international naming conventions.
3. add the translation files
Again, not too difficult this. Download the appropriate language file for your apk from the crowdin project linked below and, using the same structure as exists in /res/values/strings.xml create a new file called strings.xml in your alternative language directory (e.g. /res/values-ES/strings.xml).
The news strings.xml may contain as many or as few translations as you like. Remember, if a translation does not exist the default value from /res/values/strings.xml will be used.
Crowdin: http://crowdin.net/project/miui-rom-translation/invite
The xml formatting and tag names need to match exactly with the default strings.xml in /res/values although the translated file does NOT need to be complete.
It is worth remembering here that unless your source apk is already translated to English then some of the default values in /res/values/strings.xml will still be in Chinese, it would pay to check these.
4. recompile the strings
Now, if you've done everything carefully and correctly this step is really easy, all you need to do is recompile the apk with apktool using the b (for Build) switch.
Code:
apktool b ./<decoded_apk_dir>/ <output_apk_name>.apk
If this throws errors or does not work then use the -v switch to turn on verbose mode and diagnose your problem. If you did the test in step #1 and it worked then any problem at this step is likely related to your news strings.xml. Back out the changes one by one until you have found the problem and try again.
If you simply can't get it to compile with your changes then try just making a single change to the default strings.xml file in /res/values and see if that works for you.
Do NOT sign the apk!
5. add the new strings to the apk
Easy. Open your new apk with a zip program (like 7Zip for Windows) and copy out the resources.arsc file in the root directory of the apk. Now take that file and copy it into the source apk from the rom overwriting the existing one. This process replaces the strings but keeps the integrity of the signatures on the files.
You can now push the modified file to your phone, replacing the stock one, reboot and you're translated. Push the file using "adb push" or copy it into place using a root file manager, do not "install" the new apk. Make sure you put it in the correct place (replace the original) and reboot.
Conclusion
This process will help you add languages to any app including those in the MIUI rom. Because it's a rom the strings are contained in many different apps as well as framework-res.apk. To completely translate the rom you will need to edit every apk that has strings in it.
You will need to do this every time an apk in the rom changes. If a new version is released and say launcher2.apk is changed but updater.apk is not, then you can retain your updater.apk but you'll need to re-edit your launcher2.apk.
When an app changes the default strings.xml may also change. In this case you will need to make corresponding changes to your translations.
Good luck and if you get really stuck there's lots of people in this that have achieved success and may be willing to help!
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=789566
MIUI 1.2.11 for Vision ENG
Hi, all. I like the MIUI ROM and as most of you want to have latest version as soon as posible. But I am not a dev and my skills in android development are very very poor. So, i followed the versions of MIUI by g4rb4g3. They all are very stable and fast. And i want to say once more HUGE THANX to him for his work.
But when i found this thread today in the morning i decide to make it in english. So, putting together the ROM from 1st post and ENG pack for N1 from MIUI-DEV.COM with some additional editing of built.prop and adding some apps. I made a pack. Flashed it and it is working fine.
P.S. The only chinese words that i found are in MIUI account registration in Accounts&sync.
Adding: Facebook, Twitter, VoiceSearch, Google Search, gMaps, Street, GMail etc. (all apks are up to date).
DOWNLOAD LINK: http://www.multiupload.com/PVZRB1NRHK
P.P.S. All you do with this pack is on your own risk. I am not responsable for any damages of your phone.
ok cool so basically u made a english version for that latest update cool cool
terrelltp said:
ok cool so basically u made a english version for that latest update cool cool
Click to expand...
Click to collapse
Maybe, you could add the link to ENG version to 1st post of this thread. Could you?
da900 said:
Maybe, you could add the link to ENG version to 1st post of this thread. Could you?
Click to expand...
Click to collapse
i thought thats what u did isint that link u posted the english version
terrelltp said:
i thought thats what u did isint that link u posted the english version
Click to expand...
Click to collapse
I think he means add the link that HE provided to your first post, so that users will actually have an ENG version, instead of the one you posted.
dictionary said:
I think he means add the link that HE provided to your first post, so that users will actually have an ENG version, instead of the one you posted.
Click to expand...
Click to collapse
That's what i mean. Thanx.
lol yes i did that now
da900 said:
Hi, all. I like the MIUI ROM and as most of you want to have latest version as soon as posible. But I am not a dev and my skills in android development are very very poor. So, i followed the versions of MIUI by g4rb4g3. They all are very stable and fast. And i want to say once more HUGE THANX to him for his work.
But when i found this thread today in the morning i decide to make it in english. So, putting together the ROM from 1st post and ENG pack for N1 from MIUI-DEV.COM with some additional editing of built.prop and adding some apps. I made a pack. Flashed it and it is working fine.
P.S. The only chinese words that i found are in MIUI account registration in Accounts&sync.
Adding: Facebook, Twitter, VoiceSearch, Google Search, gMaps, Street, GMail etc. (all apks are up to date).
DOWNLOAD LINK: http://www.multiupload.com/PVZRB1NRHK
P.P.S. All you do with this pack is on your own risk. I am not responsable for any damages of your phone.
Click to expand...
Click to collapse
WOOOO..good job . it's perfect !!!!!!!! work very well ~!! thanks a lot
plz help. i want to install swype apk with my local language support. i unistalled default apk with titanium backup and i tried to install swype apk from forums. while is installed app is terminated immediately with force close error. i tried to install it on system/apps but no change. plz help i need swype!!
You could try to visit beta.swype.com, register and then download the beta. It says it won´t work if your phone came preinstalled with swype but I guess you could give it a try.
Jaflo said:
You could try to visit beta.swype.com, register and then download the beta. It says it won´t work if your phone came preinstalled with swype but I guess you could give it a try.
Click to expand...
Click to collapse
that worked but it doesn't support greek language
Thank you anyway!
Hello, i have installed this keyboard but i think that it drains too much battery. 30 minutes and the battery dropped 10%. Is this normal?
Try building swype words from scratch. Typing and pressing space to add new words. Maybe hard at first though
Sent from my MB525 using XDA App
enzo887 said:
that worked but it doesn't support greek language
Thank you anyway!
Click to expand...
Click to collapse
Please, check Defy development forum, there is a install zip for swipe that has greek language support, you can try that installer and see if that works for you. The thread name is "Update 2011-05-20: Swype for CM7 and MIU".
Hi guys, currently i m using the Elite v4 rom. i have tried the Thailand firmware but it has alot of unnecessary files like wallpapers, ringtones, alert tones, games & etc... Can anyone post a tutorial on how to add the Chinese_Simplified language & keyboard to this Elite v4 rom? Thanks you so much in advance.....
Hi guys, can flash a CSC file with the chinese language & keyboard to Elite v4 rom just to get the language & keyboard i need? Hope someone can help me on this thanks.
I don't think it will work since the CSC version might be different and not compatible. If you want Chinese you need to modify the firmware and add Chinese in it.
Hi, thanks for yr reply. Could you show me how to do it?
You can refer to this thread but there is no specific tutorial.
Download wave remaker and try to learn how to by yourself
Thanks again Soxix...
hi there , i flashed a new room yesterday , i like the room its
leedroid and its very fast and stable , but the only problem i'm having is the arabic keyboard in sense input keyboard , although the arabic meniu is available !!! any ideas ?
Thanks in advance
You will need to install the Arabic Keyboard from the official Arabic ROM. I have attached the files from my phone, but there is an APK file & a "odex" file, I don't know if it will work correctly or may some Dev can help out making it one working APK for easy installation.
Edit:
Try copying BOTH files to system\app" using using any Root file manager.
Then set permissions as follows:
USER = READ + WRITE
GROUP = READ
OTHERS = READ
omar302 said:
You will need to install the Arabic Keyboard from the official Arabic ROM. I have attached the files from my phone, but there is an APK file & a "odex" file, I don't know if it will work correctly or may some Dev can help out making it one working APK for easy installation.
Edit:
Try copying BOTH files to system\app" using using any Root file manager.
Then set permissions as follows:
USER = READ + WRITE
GROUP = READ
OTHERS = READ
Click to expand...
Click to collapse
Or buy smartkeybord pro its amazing
is the result of
http://4pda.ru/forum/index.php?showtopic=294336&view=findpost&p=19037286
screenshots in the post with the theme
Custom firmware
To install over rekaveri
[email protected]
before the tests do nandroid backup, just in case ...
installation
1. We enter into Recovery mode
2. We select Wipe Data / Factory Reset
3. choose mount and storage
4. select mount / system
5. select format / system
6. Choose install zip from sdcard
7. select chose zip from sdcard
8. Select the file [email protected]
install the firmware ....
9. We are waiting for inscription Install from sdcard complete
10. Then select Reboot system now
Features
after installing the firmware go to the menu and settings lokskrina - check on eneybl)
devaysa unlock only the power button - the other does not respond
gathered the best and workable from previous versions kastomov
added some applications
Removed fade-and SMS when receiving a call
recommendations
- Use the profile smartassV2 122-825 Mhz ....
- Do not play with overclocking ... kernel is not quite this and other profiles working correctly at high frequencies ...
- If not satisfied - you can rearrange the default kernel .... but I have consistently and correctly it works
- It is better to finish the setup procedure after selecting a date and time. After selecting a synchronization vayfay - Installer stops working ... can set things up later via the menu)
- If you want the kernel to work, as in the original firmware - do not change the settings of CPU Seth! The default factory settings are just firmware!
- After the first run to give permission for root requests
- Just activate the locker, including it - as in the screenshot
- If you turn to control the locker volume keys - will be constantly changing in lock screen call volume - will be examined with its settings!
- Turning \ partial use of animation - work much better! Also in the settings of the launcher recommend disabling - so I like)))
- Background on the screenshots - chosen from the default wallpaper launchera.Mozhete put his)))
- You can change everything to your liking, and how you want! I am not responsible for any consequences
- ...
Features
a few days of use - very pleased! This is the best of that while able to do)))
1. The emphasis is on surfing the internet - all fully working in fashion browser! Plus, blocked ads, pop-ups (those with an Internet connection to use free applications - will understand what I mean)
2. Multimedia - all included) to work correctly with Cyrillic fonts on the system level
3. The option of increasing the system font, for those who have eyesight is not very ...
4. Fully running record from the line in the kernel
5. The ability to use a different profile management of the core
6. Look in the widget! There's a lot of useful information - lock, equalizer, etc.
7. Phono - Widget operator and device information + logo in the status bar, it is convenient for our devaysa not exactly what pereputaesh sim active!
8. Power Toggles - Advanced power management widget.
9. Curtain of nrm-hawk with Quick Panel Settinds
10. A fully working adobe flash. And all that is connected with the work of his demanding applications. Or requiring its components
11. Removed fade-
12. Caller's picture on the entire screen
13. Emphasis on GPS - navigation. More stable operation and fast searching for satellites. Not pumped completely, because while only versed in the technical aspects. Configured for Ukraine. If you want to rebuild Russia - to help application FasterGPS
14. updated the default sounds. replaced the bottle animation and sound downloads
15. Other features in the screenshots - and choose the best from all the usable driver for our device) In my vzgyad)))
16. on the offer for a use frequency and profile-battery lives as well as on the usual stock sewing), but is much more pleasant to work with the phone)
17 ....
criticism,
- I'm just a user, just like you! I do not expect a miracle!
- Questions related with sewn software - do not answer
- About sewn software - discussion in the relevant subjects
- Guys or who had not to use)
- Downloading and installing my version of the assembly - you agree with my reservations
- I have no one and nothing to
- Especially in front of anyone and anything not required to report
- If you do not like something - a lot of decent options have to use - but the best option, will join to develop and assist with the development of the firmware!
- ... the taste and color - all the markers are different ....
- Do for themselves and for themselves
- Constructive suggestions welcome
- An example of co-operation and the option - in this post in the spoiler "goodies" by wmk
- In the course understand
- In my opinion the best and choose to add, before it received the consent of the authors to use the firmware in your assembly
- I do not care what you call me ... and name)
- Tongue wag ... no bags roll ...
- If you want to help - I do not refuse)
noticed
- Sometimes an incoming call slip sliders and retractable curtain bottom
- While native blocker is defeated ...
- ...
download links
http://yadi.sk/d/mBwZfnO029UhH
md5sum [email protected]
F660F31F84862C1A81C75690C22ABF75
If you like my work, please press Thanks Button!
hi
i want install your rom but i cant download it !!
mediafire link is dead
and another link don't have resume support and can't download
please upload rom on mediafire again or is there newer version of rom for p698?
thanks
n.m.t.u.1986 said:
hi
i want install your rom but i cant download it !!
mediafire link is dead
and another link don't have resume support and can't download
please upload rom on mediafire again or is there newer version of rom for p698?
thanks
Click to expand...
Click to collapse
mediafayr on blocked files
link is available for download at http://yadi.sk/d/mBwZfnO029UhH
reference work and downloaded
other assemblies see http://4pda.ru/forum/index.php?showtopic=294336&view=findpost&p=19437787
download links http://www.mediafire.com/?amjj4hj13114xpm
thanks alexejtka4
is it possible add arabic and persian language to rom(at least writing language)?
Awesome Rom
Dude you are the man. Love yeah for all your work. I am a dead fan of you now. I just dint two lil Things.
1) Is there any way to make call screen proper. Its too weird. Pic has no clarity due to enlargement.
2)Default backgroud( black colour) is better than that pic as background for settings etc.
Can you suggest a way to change it or can you change it. Please.
I am having rev3. Rev2 shows bad command while installling. Why?
n.m.t.u.1986 said:
thanks alexejtka4
is it possible add arabic and persian language to rom(at least writing language)?
Click to expand...
Click to collapse
I can try
need a full copy of the firmware folder /system/ with the desired language
I find it easier to rebuild for the new firmware
and boot.img kernel rekaveri
Put on the sharing link here and tell
for example http://www.mediafire.com
djgeorgeonline said:
Can you suggest a way to change it or can you change it. Please.
I am having rev3. Rev2 shows bad command while installling. Why?
Click to expand...
Click to collapse
a broken link in the download - I fixed it
try to download again and re-install the firmware
trying to eliminate defects....
some of my build here is not lined
You can view the complete list of work here - http://4pda.ru/forum/index.php?showtopic=294336&view=findpost&p=19780784
here is not often )
constantly on the Russian forum http://4pda.ru/forum/index.php?showtopic=294336
write in the subject - I will try to help
there can follow the news of assembly and firmware
Start new topic
decorations - http://4pda.ru/forum/index.php?showtopic=426426&view=getnewpost
This may be used http://translate.google.com
Thank you for your reply
SIR CAN YOU PLEASE DESCRIBE THE DIFFERENCE IN REV 2 AND REV3 IN BRIEF?
ALso can you please help in changing settings background pic and also call screen? please.
Wonderful alexejtka4!!! I have seen a lot of work for P698 in 4pda.ru forum but could not read anything. Thank you very much for posting here in English.
Are there any ICS rom available for P698?
djgeorgeonline said:
ALso can you please help in changing settings background pic and also call screen? please.
Click to expand...
Click to collapse
difference in the desktop....
in the next firmware is already fixed
testing now
ready - you can download
n.m.t.u.1986 said:
thanks alexejtka4
is it possible add arabic and persian language to rom(at least writing language)?
Click to expand...
Click to collapse
in any of the firmware you like to replace the following
from the folder system
system\app\HIME*.apk + system\app\HIME*.odex
system\lib\libautohan_jni.so
system\lib\libjni_pinyinime.so
system\lib\libjni_xt9input.so
system\lib\libxt9core.so
system\usr\xt9\config\databases.conf
system\usr\xt9\databases\* Copy the entire folder with the replacement
system\usr\xt9\asdb.bin
system\usr\xt9\udb.bin
on these files will need to set the permissions and ownership as they were
before that they need to remember
or
Attachments to the input language for the installation of rekaveri
but there is not the right language for you
just take them out of their firmware and copier with replacement
Unzip archiver
replace file
Reassemble
Set via a firmware rekaveri
so you can write in your desired language
that's all I can suggest
ravisghosh said:
Wonderful alexejtka4!!! I have seen a lot of work for P698 in 4pda.ru forum but could not read anything. Thank you very much for posting here in English.
Are there any ICS rom available for P698?
Click to expand...
Click to collapse
understand
this particular language ...
there is ICS rom not and will not be soon
is impossible to make port....
alexejtka4 said:
difference in the desktop....
in the next firmware is already fixed
testing now
ready - you can download
Click to expand...
Click to collapse
is one of the results http://forum.xda-developers.com/showthread.php?p=39298288#post39298288
Custom firmware
To install over rekaveri
Nahim2k7-update
alexejtka4 said:
in any of the firmware you like to replace the following
from the folder system
system\app\HIME*.apk + system\app\HIME*.odex
system\lib\libautohan_jni.so
system\lib\libjni_pinyinime.so
system\lib\libjni_xt9input.so
system\lib\libxt9core.so
system\usr\xt9\config\databases.conf
system\usr\xt9\databases\* Copy the entire folder with the replacement
system\usr\xt9\asdb.bin
system\usr\xt9\udb.bin
on these files will need to set the permissions and ownership as they were
before that they need to remember
or
Attachments to the input language for the installation of rekaveri
but there is not the right language for you
just take them out of their firmware and copier with replacement
Unzip archiver
replace file
Reassemble
Set via a firmware rekaveri
so you can write in your desired language
that's all I can suggest
Click to expand...
Click to collapse
thanks alexejtka4
but i don't undrestand what to do !
what i should do with attachment file?
i want add persian language to rom
n.m.t.u.1986 said:
thanks alexejtka4
but i don't undrestand what to do !
what i should do with attachment file?
i want add persian language to rom
Click to expand...
Click to collapse
This file is laid out as an example to the instructions
to set the language in the letter rekaveri
how to add input languages in the firmware
you need to replace these files to the firmware files from the Persian
and install assembled archive files through the superseding rekaveri
I do not have Persian firmware
I do not where to make the assembly
-------
copy and place the entire folder in the archive /system
I'll see what can be done
i undrestand that i should replace persian language files from lg stock rom to your custom rom is this right?
i have persian lg rom (V10G_00.kdz) but i can't extract persian language files from it
how can i do this?
thanks in advance
Ok.Thank you
alexejtka4 said:
difference in the desktop....
in the next firmware is already fixed
testing now
ready - you can download
Click to expand...
Click to collapse
But i have used this ROM earlier. and had great trouble with network(data network) and I liked your alex rev3 rom Very much. Just two drawbacks.
I did not like the default background image of androidhawk .It could have been a black screen.
I just hate call screen. Its too boring with switch and i accidently reject and pickup calls.Please make it look modern.
Thats all. Thank you.Please fix it if possible.
Thank you sooo much for this!! This is my favorited ROM for LG P698. A little advice:
Maybe it would be better if the display font and display buttons or menus style on change as the display like BRD_p698_21062012 ROM-v2, so the look of this rom may be more visible light and fast. Also the background wallpaper looks not good. I like the status bar style. :fingers-crossed: