Hi,
I'm trying to set the alphabet side index in contacts to hebrew chars.
I'm changing the following files:
First: in framework-miui-res.apk:
values-en-rUS -> arrays.xml :
Second: framework-res.apk (Only two lines!) :
values-en-rUS -> Strings.xml :
The steps I take:
1. Decompile (apktool d framework-XXXX.apk)
2. Making the above changes.
3. Recompile (apktool b framework-XXXX)
4. put "res" folder & resources.arsc from "framework-XXX -> build -> apk" into original framework-XXX.apk
5. Sign apk's.
6. pushing to phone (adb push framwork-XXX.apk /system/framework)
7. All crashing and Settings App is crshing too...
** The only build warnings are: "there is no default translation for bla bla bla...".
*** At the end of build I get Building apk... All OK.
**** I attached the sign tool I use and the apktool I use:
http://www.mediafire.com/?h77ex6ay50ayds7
What the hell am I doing wrong?!....
Please help me out...
Thanks,
Nir.
The only thing
I'm trying to set the alphabet side index in contacts to hebrew chars.
I'm changing the following files:
First: in framework-miui-res.apk:
values-en-rUS -> arrays.xml :
Code:
<array name="config_virtualKeyUpPattern" />
<string-array name="alphabet_table">
<item>\#</item>
<item>א</item>
<item>ב</item>
<item>ג</item>
<item>ד</item>
<item>ה</item>
<item>ו</item>
<item>ז</item>
<item>ח</item>
<item>ט</item>
<item>י</item>
<item>כ</item>
<item>ל</item>
<item>מ</item>
<item>נ</item>
<item>ס</item>
<item>ע</item>
<item>פ</item>
<item>צ</item>
<item>ק</item>
<item>ר</item>
<item>ש</item>
<item>ת</item>
<item></item>
<item></item>
<item></item>
<item></item>
</string-array>
Second: framework-res.apk (Only two lines!) :
values-en-rUS -> Strings.xml :
Code:
<string name="fast_scroll_alphabet">" אבגדהוזחטיכלמנסעפצקרשת"</string>
<string name="fast_scroll_numeric_alphabet">" 0123456789אבגדהוזחטיכלמנסעפצקרשת"</string>
The steps I take:
1. Decompile (apktool d framework-XXXX.apk)
2. Making the above changes.
3. Recompile (apktool b framework-XXXX)
4. put "res" folder & resources.arsc from "framework-XXX -> build -> apk" into original framework-XXX.apk
5. Sign apk's.
6. pushing to phone (adb push framwork-XXX.apk /system/framework)
7. All crashing and Settings App is crshing too...
** The only build warnings are: "there is no default translation for bla bla bla...".
*** At the end of build I get Building apk... All OK.
**** I attached the sign tool I use and the apktool I use:
http://www.mediafire.com/?h77ex6ay50ayds7
What the hell am I doing wrong?!....
Please help me out...
Thanks,
Nir.
The only thing