[TUTORIAL] How to enable cost saving option in conversations.apk - Sony Cross-Device General

Hello everyone!
In this tutorial i will show you how to enable the hidden cost saving feature on your Xperia device!
What does this features?
It's actually an embed feature of the Xperia conversations.apk but it's hidden by default, at least on some versions of roms (conversations.apk extracted from Global & Greek FTF files have this option enabled by default).
What does, is to convert certain letters. This way, when you writing for example a message in greek or in polish, instead of having 70 characters per message, you will have 160, so you will not have to spend extra money.
Pretty cool, nah?
{
"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"
}
​
Let's see now how to make it:
Requirements:
You must know how to decompile/compile and sign and apk.
Notepad++
The Conversations apk (deoxeded).
Procedure:
1. Decompile the Conversations.apk
2. Navigate to res/ values/ bools.xml and open the file using Notepad++
3. As you can see the following values are set to false by default.
<bool name="character_conversion">false</bool>
<bool name="character_conversion_visibility">false</bool>
Click to expand...
Click to collapse
Set them to true
<bool name="character_conversion">true</bool>
<bool name="character_conversion_visibility">true</bool>
Click to expand...
Click to collapse
4. Now save the file and exit.
5. Next thing to do is navigate to res/ xml / default_settings.xml ; Open the file using Notepad++
6. As you can see the following values are set to false by default.
<setting key="character-conversion" runtime="true">false</setting>
<setting key="character-conversion-visibility" runtime="false">false</setting>
Click to expand...
Click to collapse
Set them to true
<setting key="character-conversion" runtime="true">true</setting>
<setting key="character-conversion-visibility" runtime="false">true</setting>
Click to expand...
Click to collapse
7. Now save the file and exit.
8. Recompile your apk
9. Sign the apk
10. Enjoy!

Gonna use it in my rom
Thanks

great!
but i think it is only useful for letter-based language, not for the others like Chinese...
cuz when it over 70l it still turn to 2 pieces of sms...

Congrats
You are on portal now

can i use it for arabic language???

I don't use Sony's messaging app, but I would like to see an xposed module for this

Nice...
I tried like this:
From this post: http://forum.xda-developers.com/showpost.php?p=39147343&postcount=1
Went to:
/Data/Data/com.sonyerricsson.conversations/shared_prefs
Edit the file:
com.sonyericsson.conversations_preferences.xml
Changed the
<boolean name="semc_pref_key_character_conversation" value="false" to "true"
Until know never show the warning and the number of SMS that i have wrote and sent...
Works in the same, right?

@DaRk-L0rD
Is in bool.xml of Conversations.apk the option to disable by default "Delivery Report"?

Lc1975 said:
Nice...
I tried like this:
From this post: http://forum.xda-developers.com/showpost.php?p=39147343&postcount=1
Went to:
/Data/Data/com.sonyerricsson.conversations/shared_prefs
Edit the file:
com.sonyericsson.conversations_preferences.xml
Changed the
<boolean name="semc_pref_key_character_conversation" value="false" to "true"
Until know never show the warning and the number of SMS that i have wrote and sent...
Works in the same, right?
Click to expand...
Click to collapse
Its nothing happen...?
Sent from my LT26ii using XDA Premium 4 mobile app

If someone doesn't want to play with apktool, there is simpler way:
Go to /data/data/com.sonyerricsson.conversations/shared_prefs/com.sonyerricsson.conversations_preferences.xml
At the end of that file add the following line, so it should look like this:
Code:
<boolean name="character-conversion-visibility" value="true" />
</map>
And now character conversion option appears in the settings.

Works for me....

Sorry to write it but why for God's sake someone have to decompile conversations.apk to do so? All you have to do is turn off spell-check in Language and Input settings, then use only ASCII characters (english alphabet) when typing the message. That way you won't be limited to use only 70 characters, I'm doing it this way myself.

@kontini yes mate, it's there
@Lc1975 works this way too but do you have the option in the Settings this way?
@eLGi what if someone wants to have both? Also who builds rom maybe just wants to add this feature too!

No option in the settings....
For me a (real newbie) what i did was more simple...

Would it be the same to extract the conversations.apk from a Global or Greek FTF files and replace with it the current conversation.apk file ?

removed

make it withe overlay
hi
i extract a rom from z1 and where's i found com.sonyericsson.conversations-res.apk in /system/vendor/overlay and moded it like activate all option
it's attached you copy it to /system/vendor/overlay and you change permission to rw-r-r-- and reboot il wil work perfectly it work for 4.3 and 4.4
here is screenshot
see my TUTO here

Related

[Tutorial ] How to change Lock Screen Background on Framework-res.apk

Tools needed :
Apk manager 4.9 (using options for each step )
Notepad++( Hexadecimal editor for *.xml )
{
"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"
}
1. pull /system/framework/framework-res.apk (option 0)
2. Decompile apk (option 9)
3. add your pic to drawable-hdpi (must be a .png) and resize it as 480x800 ( if not, the picture will be stretched to fit in the resolution ) _ you can rename the file lockscreen_background.png for example
4. open the file res\layout\keyguard_screen_tab_unlock.xml with notepad++, and find the line
Code:
<RelativeLayout android:gravity="center_horizontal" android:id="@id/root" android:background="#70000000" android:layout_width="fill_parent" android:layout_height="fill_parent"
change to
Code:
<RelativeLayout android:gravity="center_horizontal" android:id="@id/root" android:background="@drawable/lockscreen_background" android:layout_width="fill_parent" android:layout_height="fill_parent"
5. compile the apk (option 11)
(when recompile do)
5.1. Hit yes to "system app".
5.2. Hit yes to restoring the files:
6. -Open the "keep" folder and delete resources.arsc and res\layout\keyguard_screen_tab_unlock.xml
7. when it is done, rename unsignedframework-res.apk to framework-res.apk and put it back to /system/framework/ again (you can just drag it to the zip file with 7zip)
Code:
[COLOR="DarkOrange"]=============Lockscreen Note==================
Once you have my theme, no needs to follow my Tuto as i already coded the xml for the lockscreen
You only need a picture 480 x 800
Open my zip file theme with 7zip and drag the picture in :
Framework > framework-res.apk > res > drawable
Then go back and 7zip will ask you to apply the changes on the apk.
All done, enjoy it!
===========================================[/COLOR]
Enjoy it
Thank you
I was wanted to know this tip.
I'll be make my theme apply this tip.
tried to change picture on LeeDroid 3.0.2 and stuck on splash screen
This is cool, but will it have to be changed every time you change your wallpaper? And on a completely unrelated note, do you have a Lion cub as a pet? (looking at the lock screen and one of your home screens)
Ignore.z said:
tried to change picture on LeeDroid 3.0.2 and stuck on splash screen
Click to expand...
Click to collapse
If you are stuck on splash screen, must be something wrong during the compilation of the apk _ did you tried to modify *.png9 files as well ?
Matty Matt said:
This is cool, but will it have to be changed every time you change your wallpaper? And on a completely unrelated note, do you have a Lion cub as a pet? (looking at the lock screen and one of your home screens)
Click to expand...
Click to collapse
Unfortunately, until some dev with free time wants to launch an app' for that, yes, we will need to changed the background _ only the background as the setup @drawable/whatever you named your picture.png doesnt change.
Hope it helps
Something is wrong when i try to open the xml file with N++ ..i've upload my xml file,could you edit it just like u said in step 4??? ty
Yorzua said:
If you are stuck on splash screen, must be something wrong during the compilation of the apk _ did you tried to modify *.png9 files as well ?
Click to expand...
Click to collapse
I only changed picture
aca85 said:
Something is wrong when i try to open the xml file with N++ ..i've upload my xml file,could you edit it just like u said in step 4??? ty
Click to expand...
Click to collapse
Sorry my friend, wrong file
You must edit keyguard_screen_tab_unlock.xml
Try again with the correct file, follow the steps and everything should be fine as it working for me and many people more
Ignore.z said:
I only changed picture
Click to expand...
Click to collapse
I need more infos in order to help you :
did you start from a stock framework.apk ?
did you get any erros during decompile/compile ?
did you change only the picture or did you modify the required xml too ?
Yorzua said:
I need more infos in order to help you :
did you start from a stock framework.apk ?
did you get any erros during decompile/compile ?
did you change only the picture or did you modify the required xml too ?
Click to expand...
Click to collapse
yes, I started from stock apk
i had no errors
i put new picture (lockscreen_background.png) to drawable-hdpi and modify the xml like you write
lockscreen_background.png to drawable folder
Ignore.z said:
yes, I started from stock apk
i had no errors
i put new picture (lockscreen_background.png) to drawable-hdpi and modify the xml like you write
Click to expand...
Click to collapse
Second error :
lockscreen_background.png MUST be placed in drawable and not in drawable-hdpi
Read carefully my post
Please click on the thanks button for this one
Thanks a lot, it help me a lot
It's awesome! Thanks the information.
Sent from my HTC Desire using XDA App
Yorzua said:
Second error :
lockscreen_background.png MUST be placed in drawable and not in drawable-hdpi
Read carefully my post
Please click on the thanks button for this one
Click to expand...
Click to collapse
still not working
Ignore.z said:
still not working
Click to expand...
Click to collapse
i helped you three times on three posts and no one thanks from you...
it is working perfectly for everyone _ start to thanks people for their help and maybe i will help you modding directly your file for you
Thanks for the hint Do you know maybe some more (I am building a theme just like you)?
Do you know KBanause's threat http://forum.xda-developers.com/showthread.php?p=9978779#post9978779? Maybe he could add your howto to the collection.
affmalg said:
Thanks for the hint Do you know maybe some more (I am building a theme just like you)?
Do you know KBanause's threat http://forum.xda-developers.com/showthread.php?p=9978779#post9978779? Maybe he could add your howto to the collection.
Click to expand...
Click to collapse
I thanked you on your theme thread
i knew already and thaked too the great tuto of Kbanause which i recomend for those who want to start theming.
KBanause Guide for Android 2.3
I am preparing a new tuto which could be add to it :
[Tutorial]How to edit smali files
If you like my work, please hit the thanks button here
Apk manager 4.9 and Notepad++
Apk manager 4.9 and Notepad++ ==> links for download added on the first post
works great, good tutorial
thanxxxx cron999

【Mod】【GB】 Remove ATT tethering warning message

I removed the tethering warning from settings.apk and am posting the instructions.
" A Tethering/Mobile Hotspot plan is required to use this service. Please go to att.com/myWireless or dail *611 if you do not already have this service provisioned. "
{
"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"
}
Decompile Settings.apk
edit xml "Settings.apk\res\values\strings.xml"
3rd last line "<string name="wifi_ap_message">Tethering/Mobile Hotspot.. STUPID FRIGGIN MESSAGE</string>
Recompile
I used apk manager
copy file to 'projects' folder
run bat script
option 10
find framework-res.apk from same build and drag to 'apk manager' cmd window
press enter
edit xml
recompile option 11
y for system app
y for add files
dont need to delete any
press enter
Winning!
of course you must still remove "tethering manager-2.apk" from system/app
here is kk4 already done!
copy to system/app
reboot to recovery
wipe cache and delvik
reboot
see the other settings mod : [Mod 2][GB] Remove "Software Update" (ATT) from settings.apk
i fail to undetstand what is this doing in dev section. decompiling an apk and editing a string is development? you can also use one thread for all "mods" instead of posting one for each
and i phail to understand why you question my posts so often...
do you still have a captivate?
TRusselo said:
and i phail to understand why you question my posts so often...
do you still have a captivate?
Click to expand...
Click to collapse
i wish i could like this post.
great little fix. every bit helps
oh, and hes just jealous, is all
biggem001 said:
i wish i could like this post.
great little fix. every bit helps
oh, and hes just jealous, is all
Click to expand...
Click to collapse
you could always press "thanks"
and can "rate thread" however many stars you think it deserves.
at the top of the thread by the title on the right is a spot to rate the thread, in the brown bar.
These 30 second things would probably be better served and create less clutter if they were all in one thread.
its just 2 things, that would be better "found" by "searching" better this way.
2 things, one time. dont need everyone coming down on this.
you can really tell who is stuck at home with the wife and kids on a saturday night...
MikeyMike01 said:
These 30 second things would probably be better served and create less clutter if they were all in one thread.
Click to expand...
Click to collapse
+1 and specially when these different "mod" threads are created by somone who has always followed xda rules
TRusselo said:
and i phail to understand why you question my posts so often...
do you still have a captivate?
Click to expand...
Click to collapse
nope i dont have a captivate. going by xda rules am i not allowed to post in this section?
TRusselo said:
I removed the tethering warning from settings.apk and am posting the instructions.
" A Tethering/Mobile Hotspot plan is required to use this service. Please go to att.com/myWireless or dail *611 if you do not already have this service provisioned. "
View attachment 796351
Decompile Settings.apk
edit xml "Settings.apk\res\values\strings.xml"
3rd last line "<string name="wifi_ap_message">Tethering/Mobile Hotspot.. STUPID FRIGGIN MESSAGE</string>
Recompile
I used apk manager
copy file to 'projects' folder
run bat script
option 10
find framework-res.apk from same build and drag to 'apk manager' cmd window
press enter
edit xml
recompile option 11
y for system app
y for add files
dont need to delete any
press enter
Winning!
of course you must still remove "tethering manager-2.apk" from system/app
here is kk4 already done!
copy to system/app
reboot to recovery
wipe cache and delvik
reboot
Click to expand...
Click to collapse
i prefer to edit the wifi_access_points.xml and wifi_ap_settings.xml ,it's better way
if you are going to tease... you might as well finish the job.. but hey we are all here for learning..
so I see at Settings.apk\res\xml the 2 files you mentioned
wifi_access_points.xml and wifi_ap_settings.xml
opened in editor..
hmm what do we have...
in wifi_ap_settings.xml i see
Code:
<PreferenceCategory android:layout="@xml/wifi_ap_message" />
and xml/wifi_ap_message.xml , points to '@string/wifi_ap_message' which was the line I edited .. so chagne to what? @null ??
next file.. wifi access points?? dont see what you would change there....
think you may have meant 'tether_prefs.xml'
it also has the line
Code:
<PreferenceCategory android:layout="@xml/wifi_ap_message" />
so once again... change to what? @null ??
I still prefer my method as it allows Customization .... oohh....
but thank you for making me look into that!
TRusselo said:
if you are going to tease... you might as well finish the job.. but hey we are all here for learning..
so I see at Settings.apk\res\xml the 2 files you mentioned
wifi_access_points.xml and wifi_ap_settings.xml
opened in editor..
hmm what do we have...
in wifi_ap_settings.xml i see
Code:
<PreferenceCategory android:layout="@xml/wifi_ap_message" />
and xml/wifi_ap_message.xml , points to '@string/wifi_ap_message' which was the line I edited .. so chagne to what? @null ??
next file.. wifi access points?? dont see what you would change there....
think you may have meant 'tether_prefs.xml'
it also has the line
Code:
<PreferenceCategory android:layout="@xml/wifi_ap_message" />
so once again... change to what? @null ??
I still prefer my method as it allows Customization .... oohh....
but thank you for making me look into that!
Click to expand...
Click to collapse
i just edit two files and i have tested it before
i think you can understand
remove the .txt
q659503934 said:
i just edit two files and i have tested it before
i think you can understand
remove the .txt
Click to expand...
Click to collapse
ok... ummin wifi_ap_settings you deleted the whole line:
" <PreferenceCategory android:layout="@xml/wifi_ap_message" /> "
but in wifi_access_points.xml you changed nothing..... and dont see anything useful to change
and the tethering message is still in tether_prefs.xml...
your job is only half done buddy~
TRusselo said:
ok... ummin wifi_ap_settings you deleted the whole line:
" <PreferenceCategory android:layout="@xml/wifi_ap_message" /> "
but in wifi_access_points.xml you changed nothing..... and dont see anything useful to change
and the tethering message is still in tether_prefs.xml...
your job is only half done buddy~
Click to expand...
Click to collapse
sorry about that i uploaded the wrong file.it's tether_prefs.xml not wifi_access_points.xml
open the tether_prefs.xml and del this code in line 4
<PreferenceCategory android:layout="@xml/wifi_ap_message" />
see? isnt this fun?
bump to match other thread.

[Q] How to move setting button beside jelly clock?

Hello xda member.. i want to put my setting button and clear button beside jelly clock.. how to do it? i hope someone can help me..
{
"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"
}
just move the lines for settings button and clear button into the same layout as the header
for example in my layout for the header I have the clear button and brightness slider and its icon within the header - but please dont just copy and paste what I have written in the code below as it will not work as you dont have the smali and the references - but you can see in the bit I have marked in red the clear button code for my status bar
Code:
<LinearLayout android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/carrier_label_layout" android:layout_width="fill_parent" android:layout_height="wrap_content">
<com.android.systemui.statusbar.StatusBarJellyHeaderView android:layout_width="wrap_content" android:layout_height="wrap_content" />
[COLOR="Red"] <TextView android:textSize="14.0sp" android:textColor="#ffffffff" android:layout_gravity="center_vertical" android:id="@id/clear_all_button" android:paddingLeft="15.0dip" android:paddingRight="15.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="4.0dip" android:layout_marginBottom="1.0dip" android:text="@string/status_bar_clear_all_button" style="StatusBar.ClearButton" />[/COLOR]
<include layout="@layout/qp_brightness" />
</LinearLayout>
marcussmith2626 said:
just move the lines for settings button and clear button into the same layout as the header
for example in my layout for the header I have the clear button and brightness slider and its icon within the header - but please dont just copy and paste what I have written in the code below as it will not work as you dont have the smali and the references - but you can see in the bit I have marked in red the clear button code for my status bar
Click to expand...
Click to collapse
owh i understand... thanks sir..
marcussmith2626 said:
just move the lines for settings button and clear button into the same layout as the header
Click to expand...
Click to collapse
Sir.. i got new problem here...
as you can see there is 'clear' text at the
clear button.. can i know how to remove 'clear' text at my clear button?
EpullSalvatrucha said:
Sir.. i got new problem here...
as you can see there is 'clear' text at the
clear button.. can i know how to remove 'clear' text at my clear button?
Click to expand...
Click to collapse
will have something to do with the string most likely - either remove the line for the @ string part for your line for the clear button or in strings.xml make the entry blank - play around with it
or could be styles.xml
marcussmith2626 said:
will have something to do with the string most likely - either remove the line for the @ string part for your line for the clear button or in strings.xml make the entry blank - play around with it
Click to expand...
Click to collapse
i make it blank like
<String = . . . . ">clear</string>
to
<String = . . . . "></string>
but it still there..
EpullSalvatrucha said:
i make it blank like
<String = . . . . ">clear</string>
to
<String = . . . . "></string>
but it still there..
Click to expand...
Click to collapse
you can try removing the @ string part from the line in status_bar_expanded.xml
so you remove
Code:
android:text= [user=936943]@string[/user]/status_bar_clear_all_button"
or it might be something in styles.xml
you can try guide 3
http://forum.xda-developers.com/showthread.php?t=1953934
this is something you will need to play around with and keep testing until you find the right area
marcussmith2626 said:
you can try removing the @ string part from the line in status_bar_expanded.xml
so you remove
Code:
android:text= [user=936943]@string[/user]/status_bar_clear_all_button"
or it might be something in styles.xml
you can try guide 3
http://forum.xda-developers.com/showthread.php?t=1953934
this is something you will need to play around with and keep testing until you find the right area
Click to expand...
Click to collapse
i tried sir.. delete string.. delete style.. delete status bar expanded.. but it failed.. even i tried delete public id in statusbarservice.smali.. but i got failed too(fc).. (status_bar_clear_all_button)

[GUIDE] [ROOT][5.0.x] Enable whatsapp call feature

TESTED ON XT1068 WITH 5.0.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"
}
* * * DO THIS AT YOUR OWN RISK * * *
​
REQUIREMENTS
A rooted device
Latest whatsapp apk from whatsapp.com/android
Android 5.0.x
STEPS
Install the latest apk.
Open any root explorer (es file explorer preferred ) and navigate to "/data/data/com.whatsapp/shared_prefs/com.whatsapp_preferences.xml".
Add these 2 lines inside <map> and </map>.
Code:
<boolean name="call" value="true" />
<string name="call_allowed">all</string>
Save changes
​
Then go to Settings/Apps/Whatsapp and force stop it.
Open the app again :3
​
carlos_esteven said:
TESTED ON XT1068 WITH 5.0.2
* * * DO THIS AT YOUR OWN RISK * * *
​
REQUIREMENTS
A rooted device
Latest whatsapp apk from whatsapp.com/android
Android 5.0.x
STEPS
Install the latest apk.
Open any root explorer (es file explorer preferred ) and navigate to "/data/data/com.whatsapp/shared_prefs/com.whatsapp_preferences.xml"
Add these 2 lines anywhere in the file but within the <map></map> and save
Code:
<boolean name="call" value="true" />
<string name="call_allowed">all</string>
​
Then go to Settings/Apps/Whatsapp and force stop it.
Open the app again :3
​
Click to expand...
Click to collapse
"Add these 2 lines anywhere in the file but within the <map></map>"
I would re-word this if I were you, since the implication reads as if you are telling us to add these lines anywhere BUT inside <map>and </map> ("anywhere but" is the same as "anywhere EXCEPT", in proper English grammar).
Many thanks
gnubash said:
"Add these 2 lines anywhere in the file but within the <map></map>"
I would re-word this if I were you, since the implication reads as if you are telling us to add these lines anywhere BUT inside <map>and </map> ("anywhere but" is the same as "anywhere EXCEPT", in proper English grammar).
Many thanks
Click to expand...
Click to collapse
Thanks for the correction
it wont work, nobody called my before. i think that is the problem. Can someone give me a call so i can have this. +541137855820 argentina
THANKS!
If anyone have calling feature than please call me on +919725555988
Someone called me but i missed it, sorry for that.
Can anyone please call me again on +919725555988
I got calling feature by this method but call just disconnects
Status shows canceled
?
I used rooting method(Used ES root explorer to change XML code) to enable interface of voice call 5 days back & got the interface too. Exactly on Sunday 9 pm the interface change back to normal interface(without call). Then after i tried to change the XML code but it automatically changes to initial one. Now i lost the interface.
And also i did got two call yesterday but still interface did't changed. Does anyone have same problem ?
(NOTE : THERE IS CHANGES IN XML CODE IN LATEST VERSION 2.11.536)
I changed the xml file but didn't get the calling UI. A friend call me we talk for 2 mins but still don't get this feature.

Enable Duble Tap To Wake on "Nougat"

hi guys
Enable duble tap to wake on N rom
Requirements:
1) Be Rooted
2) need app like root explorer or ES file explorer file manager, or what ever you like.
3) go to system/buld.prop then first Press mount r/w then open buld.prop by text editor.
4) copy this line ro.config.hw_easywakeup=true and put it in the bottom of the page in a new line this line is missing in buld.prop in nougat rom but not in MM rom
5) save your change.
6) Go to system/emui/base/xml and open up that file hw_easywakeupmotion_config.xml by text editor, Find the line that says <EasyWakeupMotion name="Double_Touch" support="1" value="0" flag="0" keycode="131" /> and change the value=0 to value=1 then save your changes.
7) Restart your phone
4) Go into Settings/Smart Assistance/Motion Control and you will see Double Touch appear in SCREEN GESTURES section, Turn it on.
now you have working duble tap to wake.
test it on nougat rom on L29C185B520, C636B521 and AL10C00B577, DL00, but may also work on other variants as well.
Important Note:
source and all info and steps too from@ajsmsg78 from his thread i just change one thing this line (ro.config.hw_...............) place, this line already exist in "MM" rom buld.prop, but missing from "N" rom buld.prop.
Source
ajsmsg78 thread:
https://forum.xda-developers.com/mate-8/general/enable-double-tap-to-wake-t3312676
sorry guys about my weak language
Double tap interfers with pocket mode so be careful
hamadazh said:
hi guys
Enable duble tap to wake on N rom
Requirements:
1) Be Rooted
2) need app like root explorer or ES file explorer file manager, or what ever you like.
3) go to system/buld.prop then first Press mount r/w then open buld.prop by text editor.
4) copy this line ro.config.hw_easywakeup=true and put it in the bottom of the page in a new line this line is missing in buld.prop in nougat rom but not in MM rom
5) save your change.
6) Go to system/emui/base/xml and open up that file hw_easywakeupmotion_config.xml by text editor, Find the line that says <EasyWakeupMotion name="Double_Touch" support="1" value="0" flag="0" keycode="131" /> and change the value=0 to value=1 then save your changes.
7) Restart your phone
4) Go into Settings/Smart Assistance/Motion Control and you will see Double Touch appear in SCREEN GESTURES section, Turn it on.
now you have working duble tap to wake.
test it on nougat rom on L29C185B520, C636B521 and AL10C00B577, DL00, but may also work on other variants as well.
Important Note:
source and all info and steps too from@ajsmsg78 from his thread i just change one thing this line (ro.config.hw_...............) place, this line already exist in "MM" rom buld.prop, but missing from "N" rom buld.prop.
Source
ajsmsg78 thread:
https://forum.xda-developers.com/mate-8/general/enable-double-tap-to-wake-t3312676
sorry guys about my weak language
Click to expand...
Click to collapse
Hi,wich Twrp and Root Method to you use?
Thanks
letschky said:
Hi,wich Twrp and Root Method to you use?
Thanks
Click to expand...
Click to collapse
this root
https://forum.xda-developers.com/mate-8/general/guide-root-nougat-android-7-0-mate-8-t3516411
this twrp
https://forum.xda-developers.com/mate-8/development/unofficial-twrp-3-0-3-0-mate-8-t3524025
Thanks, but I can not install root,Error 1in superuser-r275.zip ,When I flash in twrp 3.0.3,what can i do?
letschky said:
Thanks, but I can not install root,Error 1in superuser-r275.zip ,When I flash in twrp 3.0.3,what can i do?
Click to expand...
Click to collapse
i used this method
https://forum.xda-developers.com/showpost.php?p=70249439&postcount=78
By hamadazh
build.prop
Did you share your image
saitercan said:
By hamadazh
build.prop
Did you share your image
Click to expand...
Click to collapse
of course
{
"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"
}
By hamadazh
The same to me
But double touch is not working
saitercan said:
By hamadazh
The same to me
But double touch is not working
Click to expand...
Click to collapse
can you make screen shot from your (buld.prop)
and also (hw_easywakeupmotion_config.xml)
version b596.
systemless way.
magisk + prop config module.
works with set a new custom prop in terminal.
no need to edit xml.
the option will be there after added the prop.

Categories

Resources