[MOD for (E330L 5.0.1]Messages prevent Converting SMS to MMS(without Xposed) - Galaxy S 4 Themes and Apps

This mod will allow you to use emoji and prevent you converting your sms to mms wihout Xposed Installer or any other apps.
Im using Galaxy S4 E330L 5.0.1(Lollipop) but you can also try this on Any Galaxy S4 Lollipop stock Firmware
Before doing this please make sure make a backup of customer.xml and feature.xml so if anything goes wrong you can just easily restore it
You must be ROOTED
Just simply copy my value which is in Red color normally the default of value is 1 so you just need to increase it
1 - download Root Explorer.
2 - go to folder system>csc and open customer.xml and find this line
<PageLimit>15</PageLimit>
<MsgTypeThreshold>
<ThresholdValue>15</ThresholdValue>
Click to expand...
Click to collapse
3 - now lets go to feature.xml its on csc folder also and find this lines and change the value and copy mine .
<CscFeature_Message_SmsToMmsTextThreshold>15</CscFeature_Message_SmsToMmsTextThreshold> <CscFeature_Message_EnableMmsMobiledataOff>false</CscFeature_Message_EnableMmsMobiledataOff>
<CscFeature_Message_SmsMaxByte>102400</CscFeature_Message_SmsMaxByte>
<CscFeature_Message_ConfigEmojiComposing>onlysms</CscFeature_Message_ConfigEmojiComposing>
Click to expand...
Click to collapse
incase i forgot something i uploaded my customer.xml and feature.xml download it and try to find different lines and copy it

HplarIV said:
This mod will allow you to use emoji and prevent you converting your sms to mms wihout Xposed Installer or any other apps.
Im using Galaxy S4 E330L 5.0.1(Lollipop) but you can also try this on Any Galaxy S4 Lollipop stock Firmware
Before doing this please make sure make a backup of customer.xml and feature.xml so if anything goes wrong you can just easily restore it
You must be ROOTED
Just simply copy my value which is in Red color normally the default of value is 1 so you just need to increase it
1 - download Root Explorer.
2 - go to folder system>csc and open customer.xml and find this line
3 - now lets go to feature.xml its on csc folder also and find this lines and change the value and copy mine .
incase i forgot something i uploaded my customer.xml and feature.xml download it and try to find different lines and copy it
Click to expand...
Click to collapse
thanks bro it worked

Any flashable method sir?
Sent from my SHV-E330L using XDA-Developers mobile app

I tried this on my e330s. Yes it works. It prevents from converting but long messages can't be send how to fix this

Its working now for me.. i just follow it correctly..
Sent from my SHV-E330L using XDA-Developers mobile app

It works. But I can't send long messages.

Same here. It worked fine in a few days. The freezez when sending long sms.
Sent from my SHV-E330L using XDA-Developers mobile app

Related

[TUTORIAL] Speed up notification pullup and dropdown (SystemUI.apk) all devices :)

Tutorial about speeding up notification center drop down/pull up
1.First of all you need to get SystemUI.apk of yur actual rom
The ne im using is open root explorer and copy SystemUI.apk to your sdcard
2.Connect the phone to the computer and copy the SystemUI.apk to the extracted APKTOOL directory (download apktoolApktool.zip)
3.There is a guide on how to use apktool here :Guide apktool
4.Decompile SystemUI.apk
5.Navigate \SystemUI\res\values and open dimens.xml (use notepad ++)
6. Find self_expand_velocity, self collapse velocity. and change the values from the defalut +2000 per each.
7.You can change other values too, they are pretty much selfexplanatory.
8.After the necessary changes save the file and recompile systemui.apk
9.After recmpiling you can push it to system using ADB or i made a .zip to flash it in recovery.(Just put SystemUI.apk in system/app and you are ok) Just whatch out for the name as it should be exactly the ssame as it was before.
10.Flash the zip wipe cache/dalvik and enjoy your new fast dropdown and pullup
DONT FORGET THANX BUTTON
EDIT: It was pointed out that in newer versions of android (dip=dp) its the same thing so don't change it.
Mr.Nigma... said:
Tutorial about speeding up notification center drop down/pull up
1.First of all you need to get SystemUI.apk of yur actual rom
The ne im using is open root explorer and copy SystemUI.apk to your sdcard
2.Connect the phone to the computer and copy the SystemUI.apk to the extracted APKTOOL directory (download apktoolApktool.zip)
3.There is a guide on how to use apktool here :Guide apktool
4.Decompile SystemUI.apk
5.Navigate \SystemUI\res\values and open dimens.xml (use notepad ++)
6. Find self_expand_velocity, self collapse velocity. and change the values from the defalut +2000 per each.
7.You can change other values too, they are pretty much selfexplanatory.
8.After the necessary changes save the file and recompile systemui.apk
9.After recmpiling you can push it to system using ADB or i made a .zip to flash it in recovery.(Just put SystemUI.apk in system/app and you are ok) Just whatch out for the name as it should be exactly the ssame as it was before.
10.Flash the zip wipe cache/dalvik and enjoy your new fast dropdown and pullup
DONT FORGET THANX BUTTON
Click to expand...
Click to collapse
I decompiled systemui.apk but i can/t find \SystemUI\res\values
I have the same question. maybe your decompilation have some problems.
Sent from my lenovo A789 using xda app-developers app
Got it working... FINALLY
OK first of all thanks for this, makes a huge difference on the notification pullup and dropdown speed.
I couldn't apply the path with just the regular apktool, tried different revisions and none worked until I found apktoolsjb on this forum
http://forum.xda-developers.com/showthread.php?t=1809649
Thanks again
yonutz said:
I decompiled systemui.apk but i can/t find \SystemUI\res\values
Click to expand...
Click to collapse
it is in that folder for sure. have followed the guide step by step? maybe u havent decompiled just extracted the apk.
On Note 2 (and probably other Samsung devices) there is no layout.xml, but values are inside smali file (SystemUI\smali\com\android\systemui\R$layout.smali). However those are in hex format which I cannot decode.
.field public static final self_collapse_velocity:I = 0x7f0c001c
.field public static final self_expand_velocity:I = 0x7f0c001b
Click to expand...
Click to collapse
Above value translates to 2131492892 as integer, which makes zero sense. Probably some kind of float value?
matejdro said:
On Note 2 (and probably other Samsung devices) there is no layout.xml, but values are inside smali file (SystemUI\smali\com\android\systemui\R$layout.smali). However those are in hex format which I cannot decode.
Above value translates to 2131492892 as integer, which makes zero sense. Probably some kind of float value?
Click to expand...
Click to collapse
Looks more like a reference to resources to me.
matejdro said:
On Note 2 (and probably other Samsung devices) there is no layout.xml, but values are inside smali file (SystemUI\smali\com\android\systemui\R$layout.smali). However those are in hex format which I cannot decode.
Above value translates to 2131492892 as integer, which makes zero sense. Probably some kind of float value?
Click to expand...
Click to collapse
Try to check for that id (0x7f0c001c and/or 0x7f0c001b) in res/values/ids.xml. It could point to any value in any of the xml inside res/ folder.
No xml file contains those values (I ran search over whole folder). Only before mentioned R$layout.smali and com\android\systemui\statusbar\phone\PhoneStatusBar.smali
Linux
Any way I con do this in Linux, ubuntu to be specific.
I figured it out, Ijust hope I can put back into .apk format.
Be careful:
"dp" was actually called "dip" in early versions of the SDK. They changed it to "dp" shortly after.
Click to expand...
Click to collapse
That screenshot isn't from a 4.1/4.2 rom - So anyone who wants to try this and has 4.2 (I'm having 4.2.2), change only the values. leave the "dp" as is, don't change it into "dip".
OP - you might as well write this down!
Great, some developer with Xposed skills to do that through an Xposed module .... (You know that would be great)
I used your MOD as an Add On for my ROM. I hope thats ok credit was given (see bottom of OP). Thanks for the Info..
http://forum.xda-developers.com/showpost.php?p=37148754&postcount=1
Thanks. I already hitted it.
Sent from my C6603 using xda app-developers app
Great tut, I would suggest turning off animations entierly in developers options for the best UI smoothness.
self_expand_velocity, self collapse velocity NOT FOUND
I dint find anything like that in \SystemUI\res\values\dimens.xml
Samsung galaxy ace GT-S5830i
I can't find a values folder in my SystemUI
riteshpanjwani said:
I dint find anything like that in \SystemUI\res\values\dimens.xml
Samsung galaxy ace GT-S5830i
Click to expand...
Click to collapse
As some people replied these values are in another file. But i'll look again and edit the op with SAMSUNG specific files
Hmmm
JDogg1329 said:
I can't find a values folder in my SystemUI
Click to expand...
Click to collapse
Check your ROM if it is odex, check /system/app/ if there is SystemUI.odex. You need to deodexed if first so you can edit. However you can also di it using baksmali you just need the SystemUI.odex.
I have this, dont have this what you say.What do now?.Custom ROM - CM7

systemui hidden power SM-N9005XXUEND5 update

download the attached file and a file manager with root permissions "ROOT EXPLORER" go to the folder sistem / priv.app / overwrite and then reboot the telephone, and this mod for galaxy note 3 with Android v kitkat. XXUEND5.
What does it do? touching the clock turns off the screen, instead of going down to shutdown options hello.
download mod systemUI : https://drive.google.com/file/d/0B8KAAvt9JyRXeTNHQ0dqTmMzcEk/edit?usp=sharing
special tnx for help Dr. ketan
Replacing systemui.apk will mess up your phone. You will be in bootloop. The reason is it will reboot automatically even before you set its permission. Since you won't be able to set its permission, you will be in bootloop.
So create a flashable zip instead of replacing apk.
Sent from my PowerBoxed Note II
mannyvinny said:
Replacing systemui.apk will mess up your phone. You will be in bootloop. The reason is it will reboot automatically even before you set its permission. Since you won't be able to set its permission, you will be in bootloop.
So create a flashable zip instead of replacing apk.
Sent from my PowerBoxed Note II
Click to expand...
Click to collapse
or you copy the apk to system, set its permission and past it then in system/priv-app, or you can use Sysfile Copymaster . Just some more options...
and2 said:
or you copy the apk to system, set its permission and past it then in system/priv-app, or you can use Sysfile Copymaster . Just some more options...
Click to expand...
Click to collapse
Yes that's correct too. I recommend syscopy though(easy method)
Sent from my PowerBoxed Note II
mannyvinny said:
Yes that's correct too. I recommend syscopy though(easy method)
Sent from my PowerBoxed Note II
Click to expand...
Click to collapse
for my note 3 sm-n9005 no problem working perfect:laugh:
thanks I did not know syscopy very fantastick app tnx
Even it reboot before setting permission there shouldn't be issue. And in worst case there will be no status bar visible. But after reboot there will be no issue to set permission.
Sent from my SM-N900 using xda premium
no problem for me
Yeah it won't be issue. I have did it hundred times. Just you mau lose wallpaper and reset to stock one.
Sent from my SM-N900 using xda premium
it is possible to center the clock

How to add priority sender and delay sending option on N900 lollipop

Just a minor tweak to add priority sender and delay sending option in message settings. Tested on N900 with lollipop.
Please make a backup before adding. Unzip the file and add the file to system/etc folder. Sorry am still a noob so dont know how to create a flashable zip.....Reboot and done.
I tried it on N9005 LL and it worked, thank you mate
Welcome. By the way the same mod includes ability to add images to Calendar ( SPlanner).
Cool but it removed my toolbox any idea how to add it back.?
ugoms said:
Cool but it removed my toolbox any idea how to add it back.?
Click to expand...
Click to collapse
Tray editing floating_feature.xml toolbox_ from "FALSE" to "TRUE"
ugoms said:
Cool but it removed my toolbox any idea how to add it back.?
Click to expand...
Click to collapse
because it has changed feature_xml file LOL extract and replace attached file in system/etc. or edit the file
How can i copy it? Pls send how to..thnks
dalbee said:
Welcome. By the way the same mod includes ability to add images to Calendar ( SPlanner).
Click to expand...
Click to collapse
During the process, I lost the original file floating_feature.xml. Can you be a help? Because I want to being back the original thing.
My phone model is Note 3 N9005.

Shutter Sound Setting in Camera[Easy Method]

Im new here so i dont know if this is the right forum for this anyways lets start
this mod will enable you to have shutter setting in Camera.
Rooted Phone only.
INSTRUCTIONS:
1. Install Root Explorer and SQLite Editor find one if you dont have yet.
2.Open Root Explorer go to system>csc find feature.xml
3.Open feature.xml in Text Editor search for
<CscFeature_Camera_ShutterSoundMenu>false</CscFeature_Camera_ShutterSoundMenu>
change false to true.
4.Now lets go to SQLite Editor search for Setting Storage > Settings.db > system and then search for "csc_pref_camera_forced_shuttersound_key" change the value from 1 to 0.
5.Restart you phone then check if you have it on your Camera settings
Im using Galaxy S4 E330L but im pretty sure it will work on any Galaxy S4 version.
See attachments for more info about the steps.
Before I try this, can you confirm that this also works with Android 5.0.1 (Stock Rom,rooted) ?
And will this remove all camera sounds? I already renamed some of the .ogg files, so most sounds are gone (start/stop video, shutter etc.).
But the most annoying sound (for me) is still there - the constant beeping when taking a panorama shot.
I also couldn´t get rid of the sound in the mode selection (the clicking sound when flicking through the modes).
it will work on 5.0.1 and yes it will disable the sound of video and camera shutter,burst shot etc . Actually you dont need to change any ogg file with this mod.
sound that you cannot remove(yet):
Mode Selection
Setting Clicks.
Some stock ROM or CSC does not allow you to turn off camera sound. Your method can get the menu appear, but user can't select Off
I believe you use a custom ROM on your E330L, not stock one.
HplarIV said:
Im new here so i dont know if this is the right forum for this anyways lets start
this mod will enable you to have shutter setting in Camera.
Rooted Phone only.
INSTRUCTIONS:
1. Install Root Explorer and SQLite Editor find one if you dont have yet.
2.Open Root Explorer go to system>csc find feature.xml
3.Open feature.xml in Text Editor search for
<CscFeature_Camera_ShutterSoundMenu>false</CscFeature_Camera_ShutterSoundMenu>
change false to true.
4.Now lets go to SQLite Editor search for Setting Storage > Settings.db > system and then search for "csc_pref_camera_forced_shuttersound_key" change the value from 1 to 0.
5.Restart you phone then check if you have it on your Camera settings
Im using Galaxy S4 E330L but im pretty sure it will work on any Galaxy S4 version.
See attachments for more info about the steps.
Click to expand...
Click to collapse
i didnt find csc find feature.xml in my android 5.0.1 officel can you upload it for me
freakingprime said:
Some stock ROM or CSC does not allow you to turn off camera sound. Your method can get the menu appear, but user can't select Off
I believe you use a custom ROM on your E330L, not stock one.
Click to expand...
Click to collapse
im not using any custom rom i downloaded my firmware in sammobile . this mod will allow you to turn it off or on .
kader6000 said:
i didnt find csc find feature.xml in my android 5.0.1 officel can you upload it for me
Click to expand...
Click to collapse
Here's the link https://drive.google.com/file/d/0BxwhBWEl5_5iNHdhM1ZJTUZ3ZG8/view?usp=sharing
HplarIV said:
im not using any custom rom i downloaded my firmware in sammobile . this mod will allow you to turn it off or on .
https://drive.google.com/file/d/0BxwhBWEl5_5iNHdhM1ZJTUZ3ZG8/view?usp=sharing
Click to expand...
Click to collapse
oh, I checked again, it works. Sorry.
freakingprime said:
Some stock ROM or CSC does not allow you to turn off camera sound. Your method can get the menu appear, but user can't select Off
I believe you use a custom ROM on your E330L, not stock one.
Click to expand...
Click to collapse
That happens if you edit only the feature.xml file. follow the step 4 in the OP, then it will work
On step 4 i don't understand . Can u explain me explain clearly please
Download SQLite editor after installing it open the app then find Setting Storage.
but my can't find setting storage in SQLite Editor so can u ScreenShot for me please sir
what to do if the firmware is not folder CSC?
XXUHOF3 MBP V1 prism style

How To Modify Themes From Theme Store For S6/Note5 Roms.

Hello again everybody!
So today I have a way for you to modify themes that are from official samsung theme Store, the method is hard and it does take a lot of time so bare with me.
First of all you will need a rooted device, obviously lol
Also you will need to have, root explorer and xploer. Now for the stepes:
1- Open root explorer and go to Data > App
2- You will see many many folders for the theme, in my case I will modify something in the home screen so the folder should have your theme name and then home and the end like this ( minuhome.FranceParis.home-1 )
3- Open the folder you will find an apk called base.apk
3- copy that apk and paste To somewhere else
4- Open explore and find the copied Base.apk
5- modify the things you want, for an example I changed the folder Look, I took a folder icon, renamed it To .qmg instead of .jpg then renamed that icon exactly like the folder icon For the theme, then deleted That old One and replaced it with the new one. ( do the same with any icon you want in any base.apk)
6- Open root explorer, take the new modified base.apk and replace it with the old one, set permissions And then reboot.
If it didn't work On the first time then apply the theme then apply another theme And then apply the theme again.
This may not be the best way, but it's the only way to modify them so far.
Do not copy my method on any place without my permission!! Thank you.
Hit Thanks if you liked it!
Thank you for the tutorial ��
Kill-Switch said:
Thank you bro for the tutorial ?
Click to expand...
Click to collapse
My pleasure bro! Thank you For your feedback.
Flash version please
SM-N9200 cihazımdan Tapatalk kullanılarak gönderildi
anildinc1 said:
Flash version please
SM-N9200 cihazımdan Tapatalk kullanılarak gönderildi
Click to expand...
Click to collapse
I am sorry, what do you mean by flash version?
MrHollywood said:
I am sorry, what do you mean by flash version?
Click to expand...
Click to collapse
to take to deal with direct flash
SM-N9200 cihazımdan Tapatalk kullanılarak gönderildi
anildinc1 said:
to take to deal with direct flash
SM-N9200 cihazımdan Tapatalk kullanılarak gönderildi
Click to expand...
Click to collapse
You can't flash them, that's a method to modify themes that come from samsung theme store for note 5 roms.
How to modify only wallpaper and other images in theme
constantine23 said:
How to modify only wallpaper and other images in theme
Click to expand...
Click to collapse
Go to the same place, find a folder named your theme and then wallpaper like this ( minuhome.FranceParis.wallpaper ) you will find an apk inside called base.apk go inside, then go inside res And then you will find 3 wallpapers, one for homescreen one for lockscreen, one for Sview cover.
I know that as I have done that Before. ..But what about the settings page,contacts page And other pages wallpaper...How to change them...bcoz for changing wallpapers of homescreen,lockscreen and s-view we don't have to modify an apk we can simply change it Through settings...
constantine23 said:
I know that as I have done that Before. ..But what about the settings page,contacts page And other pages wallpaper...How to change them...bcoz for changing wallpapers of homescreen,lockscreen and s-view we don't have to modify an apk we can simply change it Through settings...
Click to expand...
Click to collapse
You will find other folders but instead of having wallpaper at the end, you will see contacts, settings, home...etc
How to make icons stay?
MrHollywood said:
Hello again everybody!
So today I have a way for you to modify themes that are from official samsung theme Store, the method is hard and it does take a lot of time so bare with me.
First of all you will need a rooted device, obviously lol
Also you will need to have, root explorer and xploer. Now for the stepes:
1- Open root explorer and go to Data > App
2- You will see many many folders for the theme, in my case I will modify something in the home screen so the folder should have your theme name and then home and the end like this ( minuhome.FranceParis.home-1 )
3- Open the folder you will find an apk called base.apk
3- copy that apk and paste To somewhere else
4- Open explore and find the copied Base.apk
5- modify the things you want, for an example I changed the folder Look, I took a folder icon, renamed it To .qmg instead of .jpg then renamed that icon exactly like the folder icon For the theme, then deleted That old One and replaced it with the new one. ( do the same with any icon you want in any base.apk)
6- Open root explorer, take the new modified base.apk and replace it with the old one, set permissions And then reboot.
If it didn't work On the first time then apply the theme then apply another theme And then apply the theme again.
This may not be the best way, but it's the only way to modify them so far.
Do not copy my method on any place without my permission!! Thank you.
Hit Thanks if you liked it!
Click to expand...
Click to collapse
Hello MrHollywood, looks like no one has posted here for a while but I'll give it a shot and hope for a reply/help. Your instructions are great, I've been wanting to know how to do this since my Galaxy S6.....I'm now onto an S8, rooted and rockin' an altered theme thanks to you! I have been able to use another themes icon pack with success, however when I use another theme's "InCallUI" (accept, reject, hangup icons in phone dialer) I cannot get them to stick. They will stay for a duration then default back to the Samsung goofy cartoon icons. I know that restarting phone triggers the reset but it also randomly triggers without restart. I can get them back by applying another theme then re-applying my theme....but a bit of a pain to have to do everytime!
What I have done, as per your instructions, is taken the "InCallUI.apk" out of theme's "base.apk", edited it and replaced. I have also placed that same edited InCallUI.apk into; Data > Overlays > Style > mytheme folder, then changed permissions to "rwx r-- r-w". I use these permission because all the other apk's in this folder use them.
Any advise or corrections in what I'm doing would be greatly appreciated!
Thanks in advance.

Categories

Resources