Related
This thread will be about various SystemUI modifications and how to achieve them. The first post will be full of screenshots and my personal mods and the second post will be the how-tos.
First of all, here is my modified SystemUI in its current form. It has been modded to do the following:
Blue ICS icons
Blue style quick toggle icons
Blue notification shade bottom from ICS
Remove clock
Remove carrier ID
Remove quick toggle text
Upcoming mods to it will be:
Battery precentages
Charging battery animations
1x display
{
"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"
}
HOW-TO
7/18/12: Custom notification pulldown background:
First, we're going to use a file that already exists in SystemUI that isn't being used by the system, so that we don't have to create IDs and anything else too difficult. Create your custom background and save it as a png. Yes, it also supports transparency right off the bat! Once you have your custom background selected, name it "status_bar_expand_default.png" and put it in the drawable-xhdpi folder in /res/drawable-xhdpi/ overwriting the current one.
Now navigate to /res/layout/tw_status_bar_tracking.xml and open it with editor
LOOK FOR:
Code:
<FrameLayout android:background="#ff000000" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1.0" />
CHANGE
Code:
android:background="#ff000000"
TO:
Code:
android:background="@drawable/status_bar_expand_default"
Save & Close
Compile, push to /system/app/ and change permissions to 644 and reboot or create flashable zip to flash in recovery.
7/17/12: Remove battery full notification:
Navigate to /com/android/systemui/power/PowerUI$1.smali
LOOK FOR:
Code:
iget v14, v14, Lcom/android/systemui/power/PowerUI;->mBatteryStatus:I
if-ne v13, v14, :cond_1b3
move-object/from16 v0, p0
iget-object v13, v0, Lcom/android/systemui/power/PowerUI$1;->this$0:Lcom/android/systemui/power/PowerUI;
invoke-virtual {v13}, Lcom/android/systemui/power/PowerUI;->notifyFullBatteryNotification()V
:cond_da
:goto_da
const/4 v13, 0x4
REMOVE:
Code:
invoke-virtual {v13}, Lcom/android/systemui/power/PowerUI;->notifyFullBatteryNotification()V
Save & Close
Compile, push to /system/app/ and change permissions to 644 and reboot or create flashable zip to flash in recovery.
How to decompile troublesome ICS apks on the GS3:
Start off by downloading the package I put together with APKTOOL v1.4.2 and v1.4.4: here
You also need to have Java installed, and WinRAR or a comparable archive manager installed.
Extract it and navigate there with a command prompt
Grab your framework-res.apk and SystemUI.apk from your ROM or ADB on your phone and place them in the same directory as your apktools
Open SystemUI with WinRAR or your archive manager and extract the META-INF folder and AndroidManifest.xml file and put them somewhere easy to find.
In command prompt type this command "apktool if framework-res.apk" and if done correct, you will have installed a dependency for whatever you're about to decompile.
The trick is to decompile with 1.4.2 which is named apktool142.jar, so rename that to apktool.jar
Now you're ready to decompile SystemUI. Type this command "apktool d SystemUI.apk" and if done correctly it will start the decompiling process and eventually finish with a new folder "SystemUI" being created.
Now you can make all of your edits.
The next trick is to recompile with 1.4.4 which is named apktool144.jar, but first rename your current apktool.jar back to apktool142.jar then rename apktool144.jar to apktool.jar.
Once done, recompile your SystemUI file by typing "apktool b SystemUI"
Once done, copy the folder and file from earlier "META-INF" and "AndroidManifest.xml" then open the "SystemUI" folder then open "build" then "apk" and paste them here, which will overwrite the current AndroidManifest.xml and create the META-INF folder in there.
Now type "apktool b SystemUI" again and this time it will build much faster than before. Once done your file is ready to be tested!
Open the "SystemUI" folder, go into "dist" and voila, your file is there, signed, and ready to be pushed back to your phone.
Go ahead and push it back with ADB, or with Root Explorer, OR create yourself a flashable zip. Whatever works for you.
Enjoy.
How to remove Quick settings toggle text or hide Quick Settinsg toggle:
I have seen inquiries about how to mod the quick toggle area to remove it. It's a fairly easy modification to make. Especially if you already know how to decompile and recompile SystemUI.apk
For the sake of making this HOW-TO short and to the point, I'm going to assume you already know how to successfully decompile and recompile SystemUI.apk. If you don't, I will be posting up another HOW-TO with all the necessary tools.
Let me first start out by apologizing because this is kind of sloppy. It may require less steps but once I got it, I didn't bother going back to figure out if it did require less steps or not.
Start off by decompiling SystemUI.apk
Next, navigate to /res/layout/tw_quick_setting_button.xml
Open it with your favorite editor
LOOK FOR:
Code:
<LinearLayout android:orientation="vertical" android:focusable="false" android:layout_width="fill_parent" android:layout_height="@dimen/quick_setting_button_height">
CHANGE:
Code:
android:layout_height="@dimen/quick_setting_button_height"
For complete removal of quick toggle settings:
TO:
Code:
android:layout_height="0.0dip"
For text removal like my mod:
TO
Code:
android:layout_height="50.0dip"
LOOK FOR:
Code:
<TextView android:textSize="@dimen/quick_setting_button_text_size" android:textColor="#ff9eb2c3" android:gravity="center" android:id="@id/btn_text" android:layout_width="fill_parent" android:layout_height="@dimen/quick_setting_button_text_height" android:includeFontPadding="false" android:shadowColor="#ff000000" android:shadowDx="1.0" android:shadowDy="1.0" android:shadowRadius="2.0" />
CHANGE:
Code:
android:textSize="@dimen/quick_setting_button_text_size"
For complete or text removal:
TO:
Code:
android:textSize="0.0dip"
Save & close
Navigate to /res/layout/tw_status_bar_expanded.xml and open with editor
LOOK FOR:
Code:
<com.android.systemui.statusbar.policy.quicksetting.QuickSettingPanel android:orientation="horizontal" android:id="@id/quicksetting_container" android:layout_width="wrap_content" android:layout_height="wrap_content" android:divider="@drawable/tw_black_bg" android:showDividers="middle" />
CHANGE:
Code:
android:layout_height="wrap_content"
For complete removal:
TO:
Code:
android:layout_height="0.0dip"
For text removal like my mod:
TO:
Code:
android:layout_height="50.0dip"
If you want to remove the carrier ID (Sprint):
LOOK FOR and REMOVE:
Code:
<com.android.systemui.statusbar.phone.CarrierLabel android:textSize="@dimen/status_bar_expanded_plmn_text_size" android:textColor="#ffd7d7d7" android:ellipsize="marquee" android:paddingLeft="11.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toLeftOf="@id/date" android:layout_alignParentLeft="true" android:layout_centerVertical="true" />
Save & close
These next parts probably aren't needed but I did them anyway. If you want to try compiling and using your SystemUI.apk, go for it and report back. If you want to follow exactly what I did, keep reading..
Navigate to /res/layout/tw_status_bar_toggle_slider.xml and open with editor
LOOK FOR:
Code:
<TextView android:textSize="15.0dip" android:textColor="#ffd7d7d7" android:id="@id/label" android:layout_width="46.0dip" android:layout_height="wrap_content" android:layout_marginRight="4.0dip" android:singleLine="false" android:layout_alignParentRight="true" android:layout_centerVertical="true" />
CHANGE:
Code:
android:textSize="15.0dip"
For complete or text removal
TO:
Code:
android:textSize="0.0dip"
Save & Close
Navigate to /res/values/dimens.xml and open with editor
LOOK FOR:
Code:
<dimen name="quick_setting_button_text_height">30.0dip</dimen>
<dimen name="quick_setting_button_text_size">13.0dip</dimen>
For complete or text removal:
CHANGE TO:
Code:
<dimen name="quick_setting_button_text_height">0.0dip</dimen>
<dimen name="quick_setting_button_text_size">0.0dip</dimen>
Save & Close
Finally, navigate to /res/values/strings.xml and open with editor
LOOK FOR:
Code:
<string name="status_bar_settings_wifi_button">Wi-Fi</string>
<string name="status_bar_settings_airplane">Airplane mode</string>
<string name="status_bar_settings_auto_rotation">Auto-rotate screen</string>
<string name="status_bar_settings_mute_label">MUTE</string>
For complete or text removal:
CHANGE TO:
Code:
<string name="status_bar_settings_wifi_button"></string>
<string name="status_bar_settings_airplane"></string>
<string name="status_bar_settings_auto_rotation"></string>
<string name="status_bar_settings_mute_label"></string>
LOOK FOR:
Code:
<string name="quickpanel_wifi_text">Wi-Fi</string>
<string name="quickpanel_bluetooth_text">Bluetooth</string>
<string name="quickpanel_gps_text">GPS</string>
<string name="quickpanel_silent_mode_text">"Silent
mode"</string>
<string name="quickpanel_silent_mode_sound">Sound</string>
<string name="quickpanel_silent_mode_vibrate">Vibrate</string>
<string name="quickpanel_silent_mode_mute">Mute</string>
<string name="quickpanel_rotation_text">"Screen
rotation"</string>
<string name="quickpanel_mobile_data_text">"Mobile
data"</string>
<string name="quickpanel_notification_text">Notification</string>
<string name="quickpanel_airplane_mode_text">"Flight
mode"</string>
<string name="quickpanel_sync_text">Sync</string>
<string name="quickpanel_wifi_display_text">"AllShare
Cast"</string>
<string name="quickpanel_power_saving_text">"Power
saving"</string>
<string name="quickpanel_driving_mode_text">"Driving
mode"</string>
<string name="quickpanel_error_text">Error</string>
<string name="quickpanel_ctwap_text">CTWAP</string>
<string name="quickpanel_ctnet_text">CTNET</string>
For complete or text removal:
CHANGE TO:
Code:
<string name="quickpanel_wifi_text"></string>
<string name="quickpanel_bluetooth_text"></string>
<string name="quickpanel_gps_text"></string>
<string name="quickpanel_silent_mode_text"></string>
<string name="quickpanel_silent_mode_sound"></string>
<string name="quickpanel_silent_mode_vibrate"></string>
<string name="quickpanel_silent_mode_mute"></string>
<string name="quickpanel_rotation_text"></string>
<string name="quickpanel_mobile_data_text"></string>
<string name="quickpanel_notification_text"></string>
<string name="quickpanel_airplane_mode_text"></string>
<string name="quickpanel_sync_text"></string>
<string name="quickpanel_wifi_display_text"></string>
<string name="quickpanel_power_saving_text"></string>
<string name="quickpanel_driving_mode_text"></string>
<string name="quickpanel_error_text"></string>
<string name="quickpanel_ctwap_text"></string>
<string name="quickpanel_ctnet_text"></string>
LOOK FOR:
Code:
<string name="quickpanel_data_roaming_text">"Data
roaming"</string>
For complete or text removal:
CHANGE TO:
Code:
<string name="quickpanel_data_roaming_text"></string>
Save & Close
Compile, push to /system/app/ and change permissions to 644 and reboot or create flashable zip to flash in recovery.
Now, a lot of these could have simply been removed from the XML, but I decided to mod their values to preserve structure in case I want to put things back the way they were. If you want to experiment with removing the entire "LOOK FOR:" line, please report back the results.
Enjoy.
How to change carrier label:
Navigate to /res/values/strings.xml and open with editor
LOOK FOR:
Code:
<string name="done">Done</string>
<string name="edit">Edit</string>
AKA at the bottom of the file.
ADD AFTER:
Code:
<string name="custom_carrier">INSERT_CUSTOM_CARRIER_LABEL_HERE</string>
Add what you want where it says "INSERT_CUSTOM_CARRIER_LABEL_HERE"
Save & Close.
Navigate to /res/layout/tw_status_bar_expanded.xml and open with editor
If you haven't removed the carrier label already:
LOOK FOR:
Code:
<com.android.systemui.statusbar.phone.CarrierLabel android:textSize="@dimen/status_bar_expanded_plmn_text_size" android:textColor="#ffd7d7d7" android:ellipsize="marquee" android:paddingLeft="11.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toLeftOf="@id/date" android:layout_alignParentLeft="true" android:layout_centerVertical="true" />
REPLACE WITH:
Code:
<TextView android:textSize="@dimen/status_bar_expanded_plmn_text_size" android:textColor="#ffd7d7d7" android:ellipsize="marquee" android:paddingLeft="11.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toLeftOf="@id/date" android:layout_alignParentLeft="true" android:text="@string/custom_carrier" android:layout_centerVertical="true" />
If you have removed the carrier label:
LOOK FOR:
Code:
<com.android.systemui.statusbar.policy.DateView android:textSize="@dimen/status_bar_expanded_date_text_size" android:textColor="#ff1589d7" android:id="@id/date" android:paddingRight="12.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toLeftOf="@id/settings_launch_button" android:layout_centerVertical="true" />
ADD AFTER:
Code:
<TextView android:textSize="@dimen/status_bar_expanded_plmn_text_size" android:textColor="#ffd7d7d7" android:ellipsize="marquee" android:paddingLeft="11.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toLeftOf="@id/date" android:layout_alignParentLeft="true" android:text="@string/custom_carrier" android:layout_centerVertical="true" />
Save & Close
Compile, push to /system/app/ and change permissions to 644 and reboot or create flashable zip to flash in recovery.
Awesome. Thank you for your contribution to the community.
Sent from my SPH-L710 using Tapatalk 2
Wondering if this qualifies as one
http://forum.xda-developers.com/showthread.php?t=1740993
i thought that's what the theming sticky was for, stuff like this
thx
thank you for your help, thisthread is very useful
nest75068 said:
Wondering if this qualifies as one
http://forum.xda-developers.com/showthread.php?t=1740993
Click to expand...
Click to collapse
You can get shutter sound controls without any modifications to sound. I don't know why it's labeled as silent camera if you can get shutter sounds without modding anything.
Anyway to modify and remove the persistant wifi conmectee text from the notification bar
Awesome freeza TY
Nice to see you here freeza.
Sent from my SAMSUNG-SGH-I747 using Tapatalk 2
FrankJL_ said:
Anyway to modify and remove the persistant wifi conmectee text from the notification bar
Click to expand...
Click to collapse
Most definitely. Verizon right? Send me a copy of your systemui.apk
freeza said:
Most definitely. Verizon right? Send me a copy of your systemui.apk
Click to expand...
Click to collapse
Been trying to get rid of the same thing. Do tell, if you know how.
Sent from my SAMSUNG-SGH-I747 using Tapatalk 2
I am on Verizon too. I removed the wifi notification, but decided to put it back until there is a proper toggle. Can you make a flashable zip to make the toggles like the first post?
Thanks
lynseyw said:
I am on Verizon too. I removed the wifi notification, but decided to put it back until there is a proper toggle. Can you make a flashable zip to make the toggles like the first post?
Thanks
Click to expand...
Click to collapse
Yeah but you'll have to send me a copy of your systemui
Figured out how to change carrier ID
freeza said:
Figured out how to change carrier ID
Click to expand...
Click to collapse
I've been trying to figure it out myself.
Care to share?
Sent from my SGH-T999 using xda premium
uoY_redruM said:
I've been trying to figure it out myself.
Care to share?
Sent from my SGH-T999 using xda premium
Click to expand...
Click to collapse
Sure will, Will be posting it up in the second post
Thanks for the thread.
I downloaded NinjaMorph Free and when viewing the xml files it seems, encrypted, a bunch of "?" and gibberish show. Is there a certain xml editor I'm suppose to use? Thanks for the help.
freeza said:
Figured out how to change carrier ID
Click to expand...
Click to collapse
was wondering what is that you have there under Ongoing?? with the cpu and memory and all that stuff.
Updated second post with instructions on how to change the carrier label
shadrach47 said:
Thanks for the thread.
I downloaded NinjaMorph Free and when viewing the xml files it seems, encrypted, a bunch of "?" and gibberish show. Is there a certain xml editor I'm suppose to use? Thanks for the help.
Click to expand...
Click to collapse
No problem. I think your problem is because you have to decompile the apk first, or the xmls will be encrypted.
concac858 said:
was wondering what is that you have there under Ongoing?? with the cpu and memory and all that stuff.
Click to expand...
Click to collapse
That's the app "Elixir2" free from the market.
*** WORKS ONLY with Stock Based Samsung ROM's (other ROM's WON'T have system\csc folder)
- CSC = (Customer Software Customization)
- I Started with Stock Files untouched from (SGS3 TMobile UVDLJA or UVDLJC)
- Some Codes will work with Different SGS3 carriers (AT&T, Sprint, Verizon, & Note2)
- I Give Line #'s as a Starting Reference Point only (it will change slightly as lines get added) (So Don't say I have WRONG EXACT #)
- Read the info at the end of the Code line. It will explain a lot sometimes.
*** HotSpot Hack mentioned in code (needs more then just changing lines) (HotSpot Hack is a another thread)
*** Remember if lines and duplicated, the last code line read will take effect!
- Everytime I Change any stock Line I add this...............................<!-- Orig xxxx -->
- Everytime Line is NEW (and not in original Stock script) I add this <!-- New Line... xxxx -->
- When line is Deleted I add this..................................................<!-- LINE DELETED... xxx{CODE}xxx -->
- VERY IMPORTANT... When Posting Code sometimes on XDA Threads, there are spaces that get added and CAN'T Be removed (even when edited).
..So use judgement and Remove spaces if you see any, It's not my fault!
Download : CSC (SGS3 TMobile UVDLJC).zip <- Not needed by most (usually comes with most ROM's)
Download : 3 Modified Files mentioned on POST #2,4,5
How to edit files (Notepad++ on Windows)
*** (system\csc...feature.xml = (settings)
*** (system\csc...default_workspace.xml = (Shortcuts + Widgets)
*** (system\csc...customer.xml = (Bookmarks+)
1. Extract any SGS3 (TMobile) Stock Based ROM.
2. Backup the whole system\csc folder...like csc (BACKUP - Untouched) <- this named will work.
3. Download "Notepad++" on Windows PC and edit the files mentioned in your "system\csc" folder.
4. Carefully edit lines.
5. Save file.
How to use MODS (after Editing with Notepad++)
1) Boot into Recovery
.... 2) Make Nandroid backup.
.... 3) Wipe {3 times each} Cache + Dalvik Cache + Factory Reset (Factory Reset will wipe All Data) (Settings, User Apps, etc) (NOT Data\media on INT SDCard)(NOT EXT SDCard)
.... 4) Reboot and test out new code lines.
5) Enjoy.
*** These changes will only work When Data is wiped! (otherwise It won't search for the CSC folder)
Tip : Use Notepad++" to compare lines going back and forth to see changes...
.... I even keep same stock spacing to make it best for troubleshooting.
Tip : Place codes to test at very bottom.
- If testing out new Code Lines, Best to add a Line at bottom called <!-- Testing --> and then place all Code lines under it.
- If you find they worked 100% place in Real section above.
- If you find something I don't have posted...Let Me (us) know, I'll give you credit for it.
These ones I don't test or know about, Since I remove them from my STOCK Slim ROM !
<!-- KIES --> I Removed the 3 Kies .apk's
<!-- Clock --> I Removed Samsung Clock, Added Google Clock
<!-- MyFiles --> I Removed this File Manager, I use File Manager instead
<!-- Music --> I removed Stock Music, I use PlayerPro Music Player
<!-- VoiceRecorder --> I Removed App
<!-- SEC LiveWallpaper --> I Removed Live Wallpapers
Post #1 Info
Post #2 feature.xml (Settings) 100% Works :good:
Post #3 feature.xml (Settings) NOT confirmed to work or Unsure about
Post #4 default_workspace.xml (Shortcuts + Widgets) :good:
Post #5 customer.xml (Bookmarks+) :good:
Post #6 Empty Code Strings (Part 1 of 2) for Feature.xml (settings) A-M
Post #7 Empty Code Strings (Part 2 of 2) for Feature.xml (settings) M-Z
Finding's History... (you can just check here to see if any changes since last time you were here)
1.00 = 01-28-2013
1.01 = 02-05-2013 (Post #2 Adds)
Line # 130 - true= Messaging - "Text templates" button on {Contact} & "New message"
Line # 134 - false= Phone - Settings - call settings - Additional settings - "call barring" menu enabled
Line # 141 - false= Contacts - {Contact} - "Delete" button on action bar
Line # 103 - true= Contacts - {Contact} - settings - "Priority level" tab (Normal, High)
Post #2 feature.xml (Settings) 100% Works
system\csc\... feature.xml = (Settings) These work 100%
-Best to copy and Paste the WHOLE code line with NOTES
-Read the End of the CODE line for INFO!
<!-- Camera -->
Line # 38 - New Line... Phone - {Take Picture During Call} enabled
Code:
<CscFeature_Camera_EnableCameraDuringCall>[B]true[/B]</CscFeature_Camera_EnableCameraDuringCall> <!-- New Line... Phone - {Take Picture During Call} enabled -->
<!-- Message -->
Line # 42 - Text Message (Larger Size + Larger MMS Size {Multimedia Messaging Service})
Code:
<CscFeature_Message_MaxMessageSize>[B]512000[/B]</CscFeature_Message_MaxMessageSize> <!-- Orig 307200 -->
<CscFeature_Message_MaxImageWidth>[B]1280[/B]</CscFeature_Message_MaxImageWidth> <!-- Orig 640 -->
<CscFeature_Message_MaxImageHeight>[B]720[/B]</CscFeature_Message_MaxImageHeight> <!-- Orig 480 -->
Line # 110 - Text Message (Larger MMS Size {Multimedia Messaging Service}, + Camcorder Values larger)
Code:
<CscFeature_Message_MaxMmsSize>[B]5120000[/B]</CscFeature_Message_MaxMmsSize> <!-- Orig 1024000, 5120000=5MB -->
<CscFeature_Message_MmsModeCaptureVideoMaxSize>[B]1223680[/B]</CscFeature_Message_MmsModeCaptureVideoMaxSize> <!-- Orig 1018880 -->
<CscFeature_Message_MmsModeCaptureVideoBitRate>[B]128000[/B]</CscFeature_Message_MmsModeCaptureVideoBitRate> <!-- Orig 0, 0= use camcorder default value, 128000=128Kbps -->
<CscFeature_Message_MmsModeCaptureVideoMaxDuration>[B]60[/B]</CscFeature_Message_MmsModeCaptureVideoMaxDuration> <!-- Orig 0, 0= use camcorder default value, 60=60 Sec -->
<CscFeature_Message_MmsModeCaptureVideoResolution>[B]320x240[/B]</CscFeature_Message_MmsModeCaptureVideoResolution> <!-- Orig [EMPTY], [EMPTY]= use camcorder default value-->
Line # 130 - true= Messaging - "Text templates" button on {Contact} & "New message"
Code:
<CscFeature_Message_EnableTextTemplateButton>[B]true[/B]</CscFeature_Message_EnableTextTemplateButton> <!-- Orig false, true= Messaging - "Text templates" button on {Contact} & "New message" -->
Line # 134 - false= Phone - Settings - call settings - Additional settings - "call barring" menu enabled
Code:
<CscFeature_Message_DisableMenuCBMessage>[B]false[/B]</CscFeature_Message_DisableMenuCBMessage> <!-- Orig true, false= Phone - Settings - call settings - Additional settings - "call barring" menu enabled -->
Line # 141 - false= Contacts - {Contact} - "Delete" button on action bar
Code:
<CscFeature_Message_DisableDeleteButtonOnActionBar>[B]false[/B]</CscFeature_Message_DisableDeleteButtonOnActionBar> <!-- Orig true, false= Contacts - {Contact} - "Delete" button on action bar added. -->
Line # 148 - New Line... Text Messages has actual time it was sent, Not when your cell received it.
Code:
<CscFeature_Message_DisplaySmsTimeAs>[B]server[/B]</CscFeature_Message_DisplaySmsTimeAs> <!-- New Line... Text Messages has actual time it was sent, Not when your cell received it -->
<!-- Contacts -->
Line # 226 - New Line... Phone - Logs - {Contact} - settings - "Add to reject list" tab... goes with line #268
Code:
<CscFeature_Contact_DisableMenuAddToRejectList>[B]false[/B]</CscFeature_Contact_DisableMenuAddToRejectList> <!-- New Line... Phone - Logs - {Contact} - settings - "Add to reject list" tab... goes with line #268-->
Line # 227 - New Line... Contacts - "Call" button
Code:
<CscFeature_Contact_EnableCallButtonInList>[B]true[/B]</CscFeature_Contact_EnableCallButtonInList> <!-- New Line... Contacts - "Call" button -->
Line # 228 - New Line... Contacts + Phone - Logs - {Contact} - settings - "Copy to dialing screen" tab... {Phone - Keypad}
Code:
<CscFeature_Contact_EnableCopyToDialer>[B]true[/B]</CscFeature_Contact_EnableCopyToDialer> <!-- New Line... Contacts + Phone - Logs - {Contact} - settings - "Copy to dialing screen" tab... {Phone - Keypad} -->
<!-- Calendar -->
Line # 232 - Change Color Scheme of Calendar (Sunday = Red #'s)
Code:
<CscFeature_Calendar_SetColorOfDays>[B]XXXXXXR[/B]</CscFeature_Calendar_SetColorOfDays> <!-- Orig XXXXXXX, Color Scheme of Calendar... (Example... RXXXXXB = 1st day(monday)=Red, 7th day(sunday)=Blue) -->
Line #234 - New Line... Disables Kies Prompt +
Code:
<CscFeature_Calendar_DisableKies>[B]true[/B]</CscFeature_Calendar_DisableKies> <!-- New Line... Disables Kies Prompt + -->
Line # 236 - New Line... Calendar - settings - "Import/Export" tab (Import/Export to/from device memory/SD card)
Code:
<CscFeature_Calendar_EnableSDCardImport>[B]true[/B]</CscFeature_Calendar_EnableSDCardImport> <!-- New Line... Calendar - settings - "Import/Export" tab (Import/Export to/from device memory/SD card) -->
<!-- Call -->
Line # 242 - false= Phone - Logs - "Call" button
Code:
<CscFeature_VoiceCall_RemoveCallButtonInLogsList>[B]false[/B]</CscFeature_VoiceCall_RemoveCallButtonInLogsList> <!-- Orig true, false= Phone - Logs - "Call" button -->
<!-- Settings -->
Line # 266 - HotSpot Hack needs this line Deleted (so I leave this line in for reference)
Code:
[B][COLOR="DarkGreen"]<!-- LINE DELETED... <CscFeature_Setting_HideApnList>pcweb.tmobile.com</CscFeature_Setting_HideApnList> part of "HOT SPOT Hack" MOD-->[/COLOR][/B]
Line # 267 - New Line... Settings - About device - "Software update" tab Removed
Code:
<CscFeature_Setting_DisableMenuSoftwareUpdate>[B]true[/B]</CscFeature_Setting_DisableMenuSoftwareUpdate> <!-- New Line... Settings - About device - "Software update" tab Removed -->
Line # 268 - New Line... Settings - "Call/message block" menu
Code:
<CscFeature_Setting_EnableMenuBlockCallMsg>[B]true[/B]</CscFeature_Setting_EnableMenuBlockCallMsg> <!-- New Line... Settings - "Call/message block" menu -->
Line # 269 - New Lines(2) Settings - More settings - Mobile networks - "Data roaming" menu (Disable, National roaming only, All networks) (STOCK has ON\OFF)
Code:
<CscFeature_Setting_EnableRoamingMenu>[B]true[/B]</CscFeature_Setting_EnableRoamingMenu> <!-- New Line... Settings - More settings - Mobile networks - "Data roaming" menu (Disable, National roaming only, All networks) (STOCK has ON\OFF) -->
<CscFeature_Setting_EnableDataRoamingMenuInDetail>[B]true[/B]</CscFeature_Setting_EnableDataRoamingMenuInDetail> <!-- New Line... Settings - More settings - Mobile networks - "Data roaming" menu (Disable, National roaming only, All networks) (STOCK has ON\OFF) -->
<!-- NFC -->
Line #278 - New Line... Allow Text Messages while on Call
Code:
<CscFeature_NFC_DisableDiscoveryDuringCall>[B]false[/B]</CscFeature_NFC_DisableDiscoveryDuringCall> <!-- New Line... <!-- New Line... Allow Text Messages while on Call -->
<!-- WEB -->
Line # 285 - Change Browser's Home Page
Code:
<CscFeature_Web_SetHomepageURL>[B]http://www.google.com[/B]</CscFeature_Web_SetHomepageURL> <!-- Orig http://ml.t-mobile.com , = Browser Homepage -->
Line # 305 - New Line... Browser - settings - "Exit Browser" tab
Code:
<CscFeature_Web_AddOptionToTerminate>[B]true[/B]</CscFeature_Web_AddOptionToTerminate> <!-- New Line... Browser - settings - "Exit Browser" tab -->
Line # 306 - New Line... Browser - History - "Clear today's history" tab
Code:
<CscFeature_Web_Bool_EnableClearTodayHistory>[B]true[/B]</CscFeature_Web_Bool_EnableClearTodayHistory> <!-- New Line... Browser - History - "Clear today's history" tab -->
Line # 307 - New Line... Browser - Bookmarks - settings - "Delete All Bookmarks" tab
Code:
<CscFeature_Web_EnableDeleteAllBookmarks>[B]true[/B]</CscFeature_Web_EnableDeleteAllBookmarks> <!-- New Line... Browser - Bookmarks - settings - "Delete All Bookmarks" tab -->
Line # 308 - New Line... Browser - settings - "Home" tab
Code:
<CscFeature_Web_EnableHomepageOption>[B]true[/B]</CscFeature_Web_EnableHomepageOption> <!-- New Line... Browser - settings - "Home" tab -->
Line # 309 - New Line... Browser - Bookmarks - "Edit Bookmark" & "Delete Bookmark" enabled
Code:
<CscFeature_Web_EnableOverwritingBookmark>[B]true[/B]</CscFeature_Web_EnableOverwritingBookmark> <!-- New Line... Browser - Bookmarks - "Edit Bookmark" & "Delete Bookmark" enabled -->
Line # 310 - New Line... Browser - {Back Key} - "Exit Browser - "Exit Internet?" prompt
Code:
<CscFeature_Web_EnablePromptToExit>[B]true[/B]</CscFeature_Web_EnablePromptToExit> <!-- New Line... Browser - {Back Key} - "Exit Browser - "Exit Internet?" prompt added -->
Line # 311 - New Line... Browser - settings - Advanced - "Version" added (current user agent)
Code:
<CscFeature_Web_ShowVersionInSetting>[B]true[/B]</CscFeature_Web_ShowVersionInSetting> <!-- New Line... Browser - settings - Advanced - "Version" added (current user agent) -->
<!-- Email -->
Line # 315 - Inverted Email (false= Black Background, NOT White)
Code:
<CscFeature_Email_UseFixedBgColorAsWhite>[B]false[/B]</CscFeature_Email_UseFixedBgColorAsWhite> <!-- Orig true, false= Inverted Email -->
<!-- TwLauncher -->
Line # 323 - New Line... Home Screen Page number {0=left page, Example 7 pages= 0,1,2,3,4,5,6 (3 would be center page)}
Code:
<CscFeature_Launcher_DefaultPageNumber>[B]1[/B]</CscFeature_Launcher_DefaultPageNumber> <!-- New Line... Home Screen Page number {0=left page, Example 7 pages= 0,1,2,3,4,5,6 (3 would be center page)} -->
Line # 324 - New Line... Total Number of Pages in Launcher (default= 7, if line removed)
Code:
<CscFeature_Launcher_TotalPageCount>[B]3[/B]</CscFeature_Launcher_TotalPageCount> <!-- New Line... Total Number of Pages in Launcher (default= 7, if line removed) -->
<!-- Extras that work -->
Line # 342 - New Line... Camera Slide Menu (Customize)
..... Stock= selfcamera,flashmode,shootingmode,effect (extra options... focusmode= [AF])
Code:
<CscFeature_Camera_DefaultSideMenu>[B]selfcamera,flashmode,shootingmode,effect[/B]</CscFeature_Camera_DefaultSideMenu> <!-- New Line... Stock= selfcamera,flashmode,shootingmode,effect (extra options... focusmode= [AF]) -->
Line # 343 - New Line... Camcorder Slide Menu (Customize)
..... Stock= selfcamcorder,flashmode,recordingmode,effect (extra Options... ???)
Code:
<CscFeature_Camera_CamcorderDefaultSideMenu>[B]selfcamcorder,flashmode,recordingmode,effect[/B]</CscFeature_Camera_CamcorderDefaultSideMenu> <!-- New Line... Stock= selfcamcorder,flashmode,recordingmode,effect (extra Options... ???) -->
Line # 344 - New Line... Lock Menu Shortcuts (Customize)
..... Stock= Phone,Messaging,Google,Email,Camera (others Tested to work... Internet,Maps,Market,YouTube Pandora
..... Uses Exact names of Apps in drawer {Case Sensative} (Not sure how to get Dual Named apps yet)
Code:
<CscFeature_Setting_ShortcutListInLockScreen>[B]Phone,Messaging,Google,Email,Camera[/B]</CscFeature_Setting_ShortcutListInLockScreen> <!-- New Line... Stock= Phone,Messaging,Google,Email,Camera (other Options... Internet,Maps,Market,YouTube) Pandora -->
MISC that 100% Work, but I kept them out of my ROM
Line # 103 - true= Contacts - {Contact} - settings - "Priority level" tab (Normal, High)
Code:
<CscFeature_Message_EnableMessagePriorityDuringComposing>false</CscFeature_Message_EnableMessagePriorityDuringComposing> <!-- Orig false, true= Contacts - {Contact} - settings - "Priority level" tab added. (Normal, High) -->
New Line... Camcorder - "Recording Mode" prompt everytime (Normal, Limit for MMS)
Code:
<CscFeature_Camera_CamcorderEnablePromptPopupToSelectRecMode>[B]true[/B]</CscFeature_Camera_CamcorderEnablePromptPopupToSelectRecMode> <!-- New Line... Works! Camcorder - "Recording Mode" prompt eveytime (Normal, Limit for MMS) -->
New Line... Scroll stops at end pages (Launcher, Apps Drawer, Widget Drawer)
Code:
<CscFeature_Launcher_DisablePageRotation>[B]true[/B]</CscFeature_Launcher_DisablePageRotation> <!-- New Line... Scroll stops at end pages (Launcher, Apps Drawer, Widget Drawer) -->
New Line... Settings - About device - "Hardware version"
Code:
<CscFeature_Setting_EnableHwVersionDisplay>[B]true[/B]</CscFeature_Setting_EnableHwVersionDisplay> <!-- New Line... Settings - About device - "Hardware version"... -->
New Line... Browser - settings - "Desktop view" always checked on start (even if you uncheck box) Stock always opens without (even if you check box)
Code:
<CscFeature_Web_EnableDesktopSiteAsDefault>[B]true[/B]</CscFeature_Web_EnableDesktopSiteAsDefault> <!-- New Line... Browser - settings - "Desktop view" always checked on start (even if you uncheck box)... Stock always opens without (even if you check box) -->
Post #3 feature.xml (Settings) NOT confirmed to work or Unsure about
system\csc\... feature.xml = (Settings)
THESE CSC CODES are Just not 100% confirmed (or not Explained with explanantion)
- Some of these lines may work, some could be DEAD lines to our SGS3 TMOBILE phones.
- Keep in mind I get many code lines from other ROM's (SGS3 AT&T, Sprint, Verizon, NOTE 2, etc)
- If I posted these below, I kept them in for a reason, I don't leave dead lines in on purpose.
- All these lines are in my Scripts (even if I don't know exactly what they are doing)
- Many just need a Explanation to be added.
So if you know they work, tell us. I'll add to post Above with Explanation!
<!-- Message -->
Line # 45 - Orig 10, can't seem to get any variable to change (always says 200)
Code:
<CscFeature_Message_RecipientLimit>[B]200[/B]</CscFeature_Message_RecipientLimit> <!-- Orig 10, Unconfirmed to work -->
Line # 52 - Orig 4, can't seem to get any variable to change (always says 200)
Code:
<CscFeature_Message_SmsToMmsTextThreshold>[B]200[/B]</CscFeature_Message_SmsToMmsTextThreshold> <!-- Orig 4, Unconfirmed to work -->
Line # 60 - Orig false, I changed this long time ago, but not sure what it does... If you know, tell me so, so I can confirm it works
Code:
<CscFeature_Message_EnableSmscEditable>[B]true[/B]</CscFeature_Message_EnableSmscEditable> <!-- Orig false, Unconfirmed to work -->
Line # 86 - Orig [EMPTY] Dead line from stock (has no variable) (just here for info purpose)
Code:
<CscFeature_Message_EmailOverSmsAddress></CscFeature_Message_EmailOverSmsAddress> <!-- Orig [EMPTY]... Dead line from Stock ROM -->
Line # 97 - Orig 40, I changed this long time ago, but not sure what it does.
Code:
<CscFeature_Message_MaxSubjectLength>[B]80[/B]</CscFeature_Message_MaxSubjectLength> <!-- Orig 40, Unconfirmed to work, goes with line #148 -->
Line # 102 - Orig false, I changed this long time ago, but not sure what it does.
Code:
<CscFeature_Message_EnableAnonymousThread>[B]true[/B]</CscFeature_Message_EnableAnonymousThread> <!-- Orig false, Unconfirmed to work -->
Line # 136 - Orig true, Messaging - settings - "Vibrate"... False= Doesn't uncheck box or remove "Vibrate" tab
Code:
<CscFeature_Message_EnableNotificationVibrate>[B]false[/B]</CscFeature_Message_EnableNotificationVibrate> <!-- Orig true, Unconfirmed to work... Messaging - settings - "Vibrate"... False= Doesn't uncheck box or remove "Vibrate" tab -->
Line # 147 - I removed this for some reason, maybe a MOD ... would like to know
Code:
[B][COLOR="DarkGreen"]<!-- LINE DELETED... <CscFeature_Message_DisableAddContactsMenu>true</CscFeature_Message_DisableAddContactsMenu> -->[/COLOR][/B]
Line # 148 - New Line... Unconfirmed to work... goes with line #97
Code:
<CscFeature_Message_EnableLimitOnMmsSubject>[B]80,char[/B]</CscFeature_Message_EnableLimitOnMmsSubject> <!-- New Line... Unconfirmed to work... goes with line #97 -->
<!-- Contacts -->
Line # 229 - New Line... Unconfirmed to work... Unlimited Linked Contacts
- I've changed to odd number values to confirm a change with no luck so far.
- It's possible that our cell has already enabled this & code came from another Carrier & could be DEAD Code.
Code:
<CscFeature_Contact_SetLinkCountMaxAs>[B]200[/B]</CscFeature_Contact_SetLinkCountMaxAs> <!-- New Line... Unconfirmed to work... Unlimited Linked Contacts -->
<!-- Calendar -->
Line #235 - New Line... Unconfirmed to work... Seams like this is NOT Needed to show US Holidays
Code:
<CscFeature_Calendar_EnableLocalHolidayDisplay>[B]USA[/B]</CscFeature_Calendar_EnableLocalHolidayDisplay> <!-- New Line... Unconfirmed to work -->
<!-- Call -->
Line #240 - Orig false, true=nothing changes... Unconfirmed to work...
Code:
<CscFeature_VoiceCall_TotalCallTime>[B]false[/B]</CscFeature_VoiceCall_TotalCallTime> <!-- Orig false, true=nothing changes (to my knowledge) -->
<!-- Settings -->
Line #254 - Orig false, true=nothing changes... Unconfirmed to work...
Code:
<CscFeature_Settings_FindMyMobile>[B]false[/B]</CscFeature_Settings_FindMyMobile> <!-- Orig false, true=nothing changes (to my knowledge) -->
*** One of the Numbered ones above (not true or false) controls Phone - Logs (number)
- I know cus I tried lower numbers and phone LOGS was removing the lowest date each time I had new call.
- I lowered all at same time to different odd numbers for another test.
Wanted: (but not working after tests) (probably no solution)
Line # 36 Camera has phone as default <!-- Orig phone, I want "Memory card" option... but 2nd prompt takes over -->
......... Didn't work... "memory card", "memory_card", "sdcard" (& more)
<CscFeature_Camera_DefaultStorage>phone</CscFeature_Camera_DefaultStorage>
Post #4 default_workspace.xml (Shortcuts + Widgets)
system\csc\...default_workspace.xml = (Shortcuts + Widgets)
- Customize with your preferred shortcuts + Widgets
- My Launcher = TouchWiz 5x6 App Drawer & 5x6 Home w/ Scrolling Wallpaper (SecLauncher2.apk)
- My Launcher has 3 pages (0,1,2) (Home page is #1 as is Centered)
- My Notes fit those Dimensions (but examples are still great)
- Read my Code and you'll understand it better
TIP : A Great App on Market to get the correct Codes Names for your Shortcuts + Widgets is "Xshortcut free"
- Run it and it will display the 2 names needed. "launcher: packageName" & "launcher:className"
My STOCK Slim ROM Code (If ROM doesn't have app, then nothing gets added)
Code:
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
[B][COLOR="DarkGreen"]<!--
All Shortcuts have this example...
launcher:packageName="xxx"
launcher:className="xxxx"
launcher:screen= 0=Left, 1=Middle, 2=Left
launcher:x= 5 Rows 0,1,2,3,4 (Side to Side)
launcher:y= 6 Columns 0,1,2,3,4,5 (Up + Down)
All Widgets have this example...
launcher:packageName="xxx"
launcher:className="xxxx"
launcher:screen= 0=Left, 1=Middle, 2=Left
launcher:x= x= top Row upper left starting point of box (Side to Side)
launcher:y= y= top Column upper left starting point of box (Up + Down)
launcher:spanX= X= Rows Side to Side (box)
launcher:spanY= y= Colums Up + Down (box)
<hotseat> = 5 Buttons on bottom of launcher (you can add only 4 max) 5th is Always "Apps"
-->[/COLOR][/B]
<favorites xmlns:launcher="http://schemas.android.com/apk/res/com.sec.android.app.launcher">
<home>
<!-- Left screen [0] -->
<!-- AdvanceS -->
<favorite
launcher:packageName="com.lidroid.settings"
launcher:className="com.lidroid.settings.Settings"
launcher:screen="0"
launcher:x="4"
launcher:y="0" />
<!-- Terminal Emulator -->
<favorite
launcher:packageName="jackpal.androidterm"
launcher:className="jackpal.androidterm.Term"
launcher:screen="0"
launcher:x="4"
launcher:y="1" />
<!-- XDA Premium -->
<favorite
launcher:packageName="com.quoord.tapatalkxdapre.activity"
launcher:className="com.quoord.tapatalkxdapre.activity.forum.ForumNavigationActivity"
launcher:screen="0"
launcher:x="4"
launcher:y="2" />
<!-- Facebook -->
<favorite
launcher:packageName="com.facebook.katana"
launcher:className="com.facebook.katana.LoginActivity"
launcher:screen="0"
launcher:x="0"
launcher:y="4" />
<!-- Skype -->
<favorite
launcher:packageName="com.skype.raider"
launcher:className="com.skype.raider.Main"
launcher:screen="0"
launcher:x="1"
launcher:y="4" />
<!-- Netflix -->
<favorite
launcher:packageName="com.netflix.mediaclient"
launcher:className="com.netflix.mediaclient.UIWebViewActivity"
launcher:screen="0"
launcher:x="0"
launcher:y="5" />
<!-- Xfinity Player -->
<favorite
launcher:packageName="com.xfinity.playnow"
launcher:className="com.comcast.cim.android.view.launch.LaunchActivity"
launcher:screen="0"
launcher:x="1"
launcher:y="5" />
<!-- YouTube -->
<favorite
launcher:packageName="com.google.android.youtube"
launcher:className="com.google.android.youtube.HomeActivity"
launcher:screen="0"
launcher:x="2"
launcher:y="5" />
<!-- Battery - probably won't work xshortcut app tried to use these 2 lines but got error (if not work try ...Battery (-Info) -->
<!-- Doesn't Work...com.android.settings + com.android.settings.BatteryInfo... It placed shortcut not working -->
<favorite
launcher:packageName="??? com.android.settings"
launcher:className="??? com.android.settings.Battery"
launcher:screen="0"
launcher:x="4"
launcher:y="5" />
<!-- Middle screen [1] -->
<!-- PlayerPro 4x2 Widget (in 5x3) -->
<appwidget
launcher:packageName="com.tbig.playerpro"
launcher:className="com.tbig.playerpro.widget.MediaAppWidgetProviderPlus"
launcher:screen="1"
launcher:x="0"
launcher:y="0"
launcher:spanX="5"
launcher:spanY="3" />
<!-- Pandora 4x1 Widget... -->
<appwidget
launcher:packageName="com.pandora.android"
launcher:className="com.pandora.android.activity.Widget"
launcher:screen="1"
launcher:x="0"
launcher:y="3"
launcher:spanX="4"
launcher:spanY="1" />
<!-- Camera -->
<favorite
launcher:packageName="com.sec.android.app.camera"
launcher:className="com.sec.android.app.camera.Camera"
launcher:screen="1"
launcher:x="4"
launcher:y="3" />
<!-- Email -->
<favorite
launcher:packageName="com.android.email"
launcher:className="com.android.email.activity.Welcome"
launcher:screen="1"
launcher:x="0"
launcher:y="4" />
<!-- Titanium Backup -->
<favorite
launcher:packageName="com.keramidas.TitaniumBackup"
launcher:className="com.keramidas.TitaniumBackup.MainActivity"
launcher:screen="1"
launcher:x="1"
launcher:y="4" />
<!-- File Manager -->
<favorite
launcher:packageName="com.rhmsoft.fm"
launcher:className="com.rhmsoft.fm.FileManager"
launcher:screen="1"
launcher:x="2"
launcher:y="4" />
<!-- Market -->
<favorite
launcher:packageName="com.android.vending"
launcher:className="com.android.vending.AssetBrowserActivity"
launcher:screen="1"
launcher:x="4"
launcher:y="4" />
<!-- Visual Voicemail -->
<favorite
launcher:packageName="com.tmobile.vvm.application"
launcher:className="com.tmobile.vvm.application.activity.setup.WelcomeActivity"
launcher:screen="1"
launcher:x="0"
launcher:y="5" />
<!-- Application manager - Don't have names for shortcut... -->
<!-- Doesn't Work...com.android.settings + com.android.settings.ApplicationManager -->
<favorite
launcher:packageName="??? com.android.settings"
launcher:className="??? com.android.settings.ApplicationManager"
launcher:screen="1"
launcher:x="4"
launcher:y="5" />
<!-- Right screen [2] -->
<!-- Calculator -->
<favorite
launcher:packageName="com.sec.android.app.popupcalculator"
launcher:className="com.sec.android.app.popupcalculator.Calculator"
launcher:screen="2"
launcher:x="0"
launcher:y="0" />
<!-- Calendar -->
<favorite
launcher:packageName="com.android.calendar"
launcher:className="com.android.calendar.AllInOneActivity"
launcher:screen="2"
launcher:x="1"
launcher:y="0" />
<!-- Clock -->
<favorite
launcher:packageName="com.google.android.deskclock"
launcher:className="com.android.deskclock.DeskClock"
launcher:screen="2"
launcher:x="2"
launcher:y="0" />
<!-- Local -->
<favorite
launcher:packageName="com.google.android.apps.maps"
launcher:className="com.google.android.maps.PlacesActivity"
launcher:screen="2"
launcher:x="4"
launcher:y="2" />
<!-- Maps -->
<favorite
launcher:packageName="com.google.android.apps.maps"
launcher:className="com.google.android.maps.MapsActivity"
launcher:screen="2"
launcher:x="4"
launcher:y="3" />
<!-- Navigation -->
<favorite
launcher:packageName="com.google.android.apps.maps"
launcher:className="com.google.android.maps.driveabout.app.DestinationActivity"
launcher:screen="2"
launcher:x="4"
launcher:y="4" />
<!-- Gallery -->
<favorite
launcher:packageName="com.sec.android.gallery3d"
launcher:className="com.sec.android.gallery3d.app.Gallery"
launcher:screen="2"
launcher:x="0"
launcher:y="5" />
<!-- Earth (google) -->
<favorite
launcher:packageName="com.google.earth"
launcher:className="com.google.earth.EarthActivity"
launcher:screen="2"
launcher:x="4"
launcher:y="5" />
</home>
<!-- Hotseat (We use the screen as the position of the item in the hotseat) -->
<hotseat>
<!-- Messaging -->
<favorite
launcher:packageName="com.android.mms"
launcher:className="com.android.mms.ui.ConversationComposer"
launcher:screen="0" />
<!-- Contacts -->
<favorite
launcher:packageName="com.android.contacts"
launcher:className="com.android.contacts.activities.PeopleActivity"
launcher:screen="1" />
<!-- Phone -->
<favorite
launcher:packageName="com.android.contacts"
launcher:className="com.android.contacts.activities.DialtactsActivity"
launcher:screen="2" />
<!-- Voice Search (Google Now) -->
<favorite
launcher:packageName="com.google.android.googlequicksearchbox"
launcher:className="com.google.android.googlequicksearchbox.VoiceSearchActivity"
launcher:screen="3" />
</hotseat>
</favorites>
Post #5 customer.xml (Bookmarks+)
system\csc\...customer.xml = (Bookmarks+)
- I Removed 9 Stock Shortcuts & added 2...
Line #180 (Total Shortcuts) changed from 9 to 2
Line #183, #193 (yes= shortcuts Editable or able to Delete)
Line #185, #191 (Shortcut Names)
Line #186, #192 (Shortcut Links)
Line #269 <Editable>yes</Editable> <!-- Orig no, yes = HOTSpot Hack -->
Line #279 <APN>epc.tmobile.com</APN> <!-- Orig pcweb.tmobile.com, epc.tmobile.com = HOTSpot Hack -->
*** HotSpot Hack mentioned in code (needs more then just changing lines) (that is another thread for that)
My Script... Highlighted
Code:
<?xml version="1.0" encoding="UTF-8" ?>
<CustomerData>
<GeneralInfo>
<CSCEdition>ED01</CSCEdition>
<Country>USA</Country>
<CountryISO>US</CountryISO>
<Region>NA</Region>
<SalesCode>TMB</SalesCode>
<NbNetworkInfo>18</NbNetworkInfo>
<NetworkInfo>
<MCCMNC>001010</MCCMNC>
<NetworkName>T-Mobile</NetworkName>
</NetworkInfo>
<NetworkInfo>
<MCCMNC>00101</MCCMNC>
<NetworkName>T-Mobile</NetworkName>
</NetworkInfo>
<NetworkInfo>
<MCCMNC>310160</MCCMNC>
<NetworkName>T-Mobile</NetworkName>
</NetworkInfo>
<NetworkInfo>
<MCCMNC>310200</MCCMNC>
<NetworkName>T-Mobile</NetworkName>
</NetworkInfo>
<NetworkInfo>
<MCCMNC>310210</MCCMNC>
<NetworkName>T-Mobile</NetworkName>
</NetworkInfo>
<NetworkInfo>
<MCCMNC>310220</MCCMNC>
<NetworkName>T-Mobile</NetworkName>
</NetworkInfo>
<NetworkInfo>
<MCCMNC>310230</MCCMNC>
<NetworkName>T-Mobile</NetworkName>
</NetworkInfo>
<NetworkInfo>
<MCCMNC>310240</MCCMNC>
<NetworkName>T-Mobile</NetworkName>
</NetworkInfo>
<NetworkInfo>
<MCCMNC>310250</MCCMNC>
<NetworkName>T-Mobile</NetworkName>
</NetworkInfo>
<NetworkInfo>
<MCCMNC>310260</MCCMNC>
<NetworkName>T-Mobile</NetworkName>
</NetworkInfo>
<NetworkInfo>
<MCCMNC>310270</MCCMNC>
<NetworkName>T-Mobile</NetworkName>
</NetworkInfo>
<NetworkInfo>
<MCCMNC>310310</MCCMNC>
<NetworkName>T-Mobile</NetworkName>
</NetworkInfo>
<NetworkInfo>
<MCCMNC>310490</MCCMNC>
<NetworkName>T-Mobile</NetworkName>
</NetworkInfo>
<NetworkInfo>
<MCCMNC>310580</MCCMNC>
<NetworkName>T-Mobile</NetworkName>
</NetworkInfo>
<NetworkInfo>
<MCCMNC>310660</MCCMNC>
<NetworkName>T-Mobile</NetworkName>
</NetworkInfo>
<NetworkInfo>
<MCCMNC>310800</MCCMNC>
<NetworkName>T-Mobile</NetworkName>
</NetworkInfo>
<NetworkInfo>
<MCCMNC>99999</MCCMNC>
<NetworkName>T-Mobile</NetworkName>
</NetworkInfo>
<NetworkInfo>
<MCCMNC>999990</MCCMNC>
<NetworkName>T-Mobile</NetworkName>
</NetworkInfo>
</GeneralInfo>
<Settings>
<Main>
<Security>
<NbNetworkLock>18</NbNetworkLock>
<NetworkLock>001010</NetworkLock>
<NetworkLock>00101</NetworkLock>
<NetworkLock>310160</NetworkLock>
<NetworkLock>310200</NetworkLock>
<NetworkLock>310210</NetworkLock>
<NetworkLock>310220</NetworkLock>
<NetworkLock>310230</NetworkLock>
<NetworkLock>310240</NetworkLock>
<NetworkLock>310250</NetworkLock>
<NetworkLock>310260</NetworkLock>
<NetworkLock>310270</NetworkLock>
<NetworkLock>310310</NetworkLock>
<NetworkLock>310490</NetworkLock>
<NetworkLock>310580</NetworkLock>
<NetworkLock>310660</NetworkLock>
<NetworkLock>310800</NetworkLock>
<NetworkLock>99999</NetworkLock>
<NetworkLock>999990</NetworkLock>
</Security>
<Network>
<NbFastDormancy>2</NbFastDormancy>
<FastDormancy>
<NetworkName>T-Mobile</NetworkName>
<FastDormancyEnableStatus>off</FastDormancyEnableStatus>
<LCDStatus>on</LCDStatus>
</FastDormancy>
<FastDormancy>
<NetworkName>T-Mobile</NetworkName>
<FastDormancyEnableStatus>off</FastDormancyEnableStatus>
<LCDStatus>off</LCDStatus>
</FastDormancy>
<NbWbAmr>1</NbWbAmr>
<WbAmr>
<NetworkName>T-Mobile</NetworkName>
<WbAmrCodec>on</WbAmrCodec>
</WbAmr>
<AutoAttach>on</AutoAttach>
<NbSOSNumber>2</NbSOSNumber>
<SOSNumber>911</SOSNumber>
<SOSNumber>112</SOSNumber>
<NbSOSNumberNoSIM>7</NbSOSNumberNoSIM>
<SOSNumberNoSIM>911</SOSNumberNoSIM>
<SOSNumberNoSIM>112</SOSNumberNoSIM>
<SOSNumberNoSIM>000</SOSNumberNoSIM>
<SOSNumberNoSIM>110</SOSNumberNoSIM>
<SOSNumberNoSIM>118</SOSNumberNoSIM>
<SOSNumberNoSIM>119</SOSNumberNoSIM>
<SOSNumberNoSIM>999</SOSNumberNoSIM>
<AutoFastDormancy>on</AutoFastDormancy>
</Network>
<Sound>
<AMRVoiceCodec>on</AMRVoiceCodec>
</Sound>
<Phone>
<DefLanguage>automatic</DefLanguage>
<DefLanguageNoSIM>english_us</DefLanguageNoSIM>
<ContinuousInput>enable</ContinuousInput>
<DateTimeFormat>
<DateFormat>mmddyyyy</DateFormat>
<TimeFormat>12h</TimeFormat>
<TimezoneUpdate>on</TimezoneUpdate>
</DateTimeFormat>
</Phone>
<Display>
<Wallpaper src="d2_tmo_wallpaper_01.jpg"></Wallpaper>
</Display>
</Main>
<Messages>
<SMS>
<CharSupport>automatic</CharSupport>
</SMS>
<MMS>
<MMSVersion>1.2</MMSVersion>
<MmsSending>
<ReqDeliveryRep>off</ReqDeliveryRep>
<ReqReadRep>off</ReqReadRep>
<MessageSize>1m</MessageSize>
<ImageResizeResolution>uxga</ImageResizeResolution>
<CreationMode>free</CreationMode>
</MmsSending>
<MmsReceiving>
<Home>auto</Home>
<Roaming>manual</Roaming>
</MmsReceiving>
</MMS>
</Messages>
<BT>
<Activation>off</Activation>
<Visibility>off</Visibility>
</BT>
<Browser>
<CookieOption>accept</CookieOption>
<HistoryList>on</HistoryList>
<NbBookmark>[B]2[/B]</NbBookmark> [B][COLOR="DarkGreen"]<!-- Orig 9, I Deleted 9 STOCK Bookmarks, added 2 back -->[/COLOR][/B]
<Bookmark> [B][COLOR="DarkGreen"]<!-- Custom Book Mark #1 -->[/COLOR][/B]
<NetworkName>T-Mobile</NetworkName>
<Editable>[B]yes[/B]</Editable> [B][COLOR="DarkGreen"]<!-- Orig no, yes= able to edit or delete -->[/COLOR][/B]
<Index>1</Index>
<BookmarkName>[B]XDA - Dev[/B]</BookmarkName>
<URL>[B]http://forum.xda-developers.com/forumdisplay.php?f=1645[/B]</URL>
</Bookmark>
<Bookmark> [B][COLOR="DarkGreen"]<!-- Custom Book Mark #2 -->[/COLOR][/B]
<NetworkName>T-Mobile</NetworkName>
<Index>2</Index>
<BookmarkName>XDA - Q+A</BookmarkName>
<URL>[B]http://forum.xda-developers.com/forumdisplay.php?f=1714[/B]</URL>
<Editable>[B]yes[/B]</Editable> [B][COLOR="DarkGreen"]<!-- Orig no, yes= able to edit or delete -->[/COLOR][/B]
</Bookmark>
</Browser>
<SyncML>
<NbDevManagement>1</NbDevManagement>
<DevManagement>
<AuthType>md5</AuthType>
<AccName>Production</AccName>
<ServAddr>https://fota.t-mobile.com:443/oma/</ServAddr>
<ServID>86636821</ServID>
<ServPwd><Populated by Algorithm></ServPwd>
<ServNonce></ServNonce>
<UserId><Populated by Algorithm></UserId>
<Password><Populated by Algorithm></Password>
<ClientNonce></ClientNonce>
<AddParam>
<AddressType>http</AddressType>
<ConnRef></ConnRef>
<VendorExt></VendorExt>
<ApBearerType>ps</ApBearerType>
<ApAddressType>ipv4</ApAddressType>
<ProxyAddressType>ipv4</ProxyAddressType>
<ProxyUserName></ProxyUserName>
<ProxyPassword></ProxyPassword>
</AddParam>
</DevManagement>
</SyncML>
<GPS>
<NbAGPS>1</NbAGPS>
<AGPS>
<ServAddr>lbs.geo.t-mobile.com</ServAddr>
<Port>7275</Port>
</AGPS>
</GPS>
<Connections>
<NbProfileHandle>1</NbProfileHandle>
<ProfileHandle>
<NbNetProfile>2</NbNetProfile>
<NetworkName>T-Mobile</NetworkName>
<ProfBrowser>T-Mobile US</ProfBrowser>
<ProfMMS>T-Mobile MMS</ProfMMS>
<ProfIntSharing>T-Mobile Tethering</ProfIntSharing>
</ProfileHandle>
<NbProfile>3</NbProfile>
<Profile>
<NetworkName>T-Mobile</NetworkName>
<Editable>no</Editable>
<EnableStatus>enable</EnableStatus>
<ProfileName>T-Mobile US</ProfileName>
<Auth>none</Auth>
<Bearer>ps</Bearer>
<Protocol>http</Protocol>
<Proxy>
<EnableFlag>off</EnableFlag>
</Proxy>
<PSparam>
<APN>epc.tmobile.com</APN>
</PSparam>
</Profile>
<Profile>
<NetworkName>T-Mobile</NetworkName>
<Editable>no</Editable>
<EnableStatus>enable</EnableStatus>
<ProfileName>T-Mobile MMS</ProfileName>
<URL>http://mms.msg.eng.t-mobile.com/mms/wapenc</URL>
<Auth>none</Auth>
<Protocol>http</Protocol>
<Proxy>
<EnableFlag>off</EnableFlag>
</Proxy>
<PSparam>
<APN>epc.tmobile.com</APN>
</PSparam>
</Profile>
<Profile>
<NetworkName>T-Mobile</NetworkName>
<Editable>[B]yes[/B]</Editable> [B][COLOR="DarkGreen"]<!-- Orig no, yes = HOTSpot Hack -->[/COLOR][/B]
<EnableStatus>enable</EnableStatus>
<ProfileName>T-Mobile Tethering</ProfileName>
<Auth>none</Auth>
<Bearer>ps</Bearer>
<Protocol>http</Protocol>
<Proxy>
<EnableFlag>off</EnableFlag>
</Proxy>
<PSparam>
<APN>[B]epc.tmobile.com[/B]</APN> [B][COLOR="DarkGreen"]<!-- Orig pcweb.tmobile.com, epc.tmobile.com = HOTSpot Hack -->[/COLOR][/B]
</PSparam>
</Profile>
</Connections>
</Settings>
<Main>
<Sound>
<MsgToneAlertType>vib</MsgToneAlertType>
</Sound>
</Main>
</CustomerData>
Empty Code Strings (Part 1 of 2) Feature.xml (settings)
- Use these to try out new Mod's, if you find Something worked, post results!
- with "Notepad++", you can use... "Search" - "Find" to check if lines are duplicates
Empty Code Strings (NO Values inside ><) Part 1 of 2 for Feature.xml (settings)
Code:
<CscFeature_BooleanTestFalse></CscFeature_BooleanTestFalse>
<CscFeature_BooleanTestNull></CscFeature_BooleanTestNull>
<CscFeature_BooleanTestTrue></CscFeature_BooleanTestTrue>
<CscFeature_BT_EnableExceptionHandling4Corea></CscFeature_BT_EnableExceptionHandling4Corea>
<CscFeature_BT_EnableSeparateSettingWithAirplainMode></CscFeature_BT_EnableSeparateSettingWithAirplainMode>
<CscFeature_BT_RemoveInternationalTelNumPrefix></CscFeature_BT_RemoveInternationalTelNumPrefix>
<CscFeature_BT_ReplacePhoneTypeAsCdmaInMAP></CscFeature_BT_ReplacePhoneTypeAsCdmaInMAP>
<CscFeature_BT_SecurityMdmService></CscFeature_BT_SecurityMdmService>
<CscFeature_Calculator_EnablePopupMsgWhenExceedMaxDigit></CscFeature_Calculator_EnablePopupMsgWhenExceedMaxDigit>
<CscFeature_Calendar_AddItem4SearchApp></CscFeature_Calendar_AddItem4SearchApp>
<CscFeature_Calendar_DisableGoogleMapIntegration></CscFeature_Calendar_DisableGoogleMapIntegration>
<CscFeature_Calendar_DisableKies></CscFeature_Calendar_DisableKies>
<CscFeature_Calendar_EnableGateMsg></CscFeature_Calendar_EnableGateMsg>
<CscFeature_Calendar_EnableLocalHolidayDisplay></CscFeature_Calendar_EnableLocalHolidayDisplay>
<CscFeature_Calendar_EnableLunar></CscFeature_Calendar_EnableLunar>
<CscFeature_Calendar_EnableMsgReminder></CscFeature_Calendar_EnableMsgReminder>
<CscFeature_Calendar_EnableSDCardImport></CscFeature_Calendar_EnableSDCardImport>
<CscFeature_Calendar_EnableShiftedWeekNumber></CscFeature_Calendar_EnableShiftedWeekNumber>
<CscFeature_Calendar_ReplaceMenuAutoNavi></CscFeature_Calendar_ReplaceMenuAutoNavi>
<CscFeature_Clock_DisableAccWeatherInfo></CscFeature_Clock_DisableAccWeatherInfo>
<CscFeature_Clock_DisableDstIcon></CscFeature_Clock_DisableDstIcon>
<CscFeature_Clock_DisableGoogleLocationInfo></CscFeature_Clock_DisableGoogleLocationInfo>
<CscFeature_Clock_DisableIsraelCountry></CscFeature_Clock_DisableIsraelCountry>
<CscFeature_Clock_DisableSortByCityName></CscFeature_Clock_DisableSortByCityName>
<CscFeature_Clock_EnableAutoPowerOnOffMenu></CscFeature_Clock_EnableAutoPowerOnOffMenu>
<CscFeature_Clock_EnableMenuAlarmAlertDuringSilentMode></CscFeature_Clock_EnableMenuAlarmAlertDuringSilentMode>
<CscFeature_Clock_EnablePinyinSortList></CscFeature_Clock_EnablePinyinSortList>
<CscFeature_Clock_EnableSmartAlarmDefault></CscFeature_Clock_EnableSmartAlarmDefault>
<CscFeature_Clock_ExclusiveEnablingAutoPowerSetting></CscFeature_Clock_ExclusiveEnablingAutoPowerSetting>
<CscFeature_Clock_ReplaceNameTaiwanWithTaipei></CscFeature_Clock_ReplaceNameTaiwanWithTaipei>
<CscFeature_Clock_ReplaceName_TaiwanWithTaipei></CscFeature_Clock_ReplaceName_TaiwanWithTaipei>
<CscFeature_Common_DisableGoogle></CscFeature_Common_DisableGoogle>
<CscFeature_Common_DisablePhoneNumberFormatting></CscFeature_Common_DisablePhoneNumberFormatting>
<CscFeature_Common_EnableLocalizedDateFormat4></CscFeature_Common_EnableLocalizedDateFormat4>
<CscFeature_Common_EnableMobileOfficeMdm></CscFeature_Common_EnableMobileOfficeMdm>
<CscFeature_Common_EnableNotificationWhenDeviceMemoryFull></CscFeature_Common_EnableNotificationWhenDeviceMemoryFull>
<CscFeature_Common_EnableOnDeviceHelp></CscFeature_Common_EnableOnDeviceHelp>
<CscFeature_Common_EnableSUA></CscFeature_Common_EnableSUA>
<CscFeature_Common_EnableUiDisplayMirroring></CscFeature_Common_EnableUiDisplayMirroring>
<CscFeature_Common_EnableVIPMode></CscFeature_Common_EnableVIPMode>
<CscFeature_Common_MyPhonebookBrandName></CscFeature_Common_MyPhonebookBrandName>
<CscFeature_Common_Vibration4NotiDuringCall></CscFeature_Common_Vibration4NotiDuringCall>
<CscFeature_Contact_AddPreloadedSpeedDialAs></CscFeature_Contact_AddPreloadedSpeedDialAs>
<CscFeature_Contact_ANRConfig></CscFeature_Contact_ANRConfig>
<CscFeature_Contact_CheckSimAlphaLength4UnicodeName></CscFeature_Contact_CheckSimAlphaLength4UnicodeName>
<CscFeature_Contact_DisableAccountIconsInContactList></CscFeature_Contact_DisableAccountIconsInContactList>
<CscFeature_Contact_DisableContactPhoto></CscFeature_Contact_DisableContactPhoto>
<CscFeature_Contact_DisableDialerSearch4LatinKorean></CscFeature_Contact_DisableDialerSearch4LatinKorean>
<CscFeature_Contact_DisableEmergencyGroup></CscFeature_Contact_DisableEmergencyGroup>
<CscFeature_Contact_DisableGoogleMapIntegration></CscFeature_Contact_DisableGoogleMapIntegration>
<CscFeature_Contact_DisableGoogleTalk></CscFeature_Contact_DisableGoogleTalk>
<CscFeature_Contact_DisableMenuSimExportImport></CscFeature_Contact_DisableMenuSimExportImport>
<CscFeature_Contact_DisableMergeWithGoogle></CscFeature_Contact_DisableMergeWithGoogle>
<CscFeature_Contact_DisableSIMContacts></CscFeature_Contact_DisableSIMContacts>
<CscFeature_Contact_DisableSipAddress></CscFeature_Contact_DisableSipAddress>
<CscFeature_Contact_DisableTriggerInternetCall></CscFeature_Contact_DisableTriggerInternetCall>
<CscFeature_Contact_DoNotSaveEcc></CscFeature_Contact_DoNotSaveEcc>
<CscFeature_Contact_DoNotSaveOtaSpNumber></CscFeature_Contact_DoNotSaveOtaSpNumber>
<CscFeature_Contact_EnableAAB></CscFeature_Contact_EnableAAB>
<CscFeature_Contact_EnableAutoGenerationPhoneticName></CscFeature_Contact_EnableAutoGenerationPhoneticName>
<CscFeature_Contact_EnableBackupAssistance></CscFeature_Contact_EnableBackupAssistance>
<CscFeature_Contact_EnableBackupSvc4Ctc></CscFeature_Contact_EnableBackupSvc4Ctc>
<CscFeature_Contact_EnableBPMFSortList></CscFeature_Contact_EnableBPMFSortList>
<CscFeature_Contact_EnableCallerIdSearch4Korea></CscFeature_Contact_EnableCallerIdSearch4Korea>
<CscFeature_Contact_EnableCopyToDialer></CscFeature_Contact_EnableCopyToDialer>
<CscFeature_Contact_EnableDeleteMultipleAllOptionPerStorage></CscFeature_Contact_EnableDeleteMultipleAllOptionPerStorage>
<CscFeature_Contact_EnableDialerSearchList4China></CscFeature_Contact_EnableDialerSearchList4China>
<CscFeature_Contact_EnableDocomoAccountAsDefault></CscFeature_Contact_EnableDocomoAccountAsDefault>
<CscFeature_Contact_EnableDynCallerIdMatchingDigitWithAutoSim></CscFeature_Contact_EnableDynCallerIdMatchingDigitWithAutoSim>
<CscFeature_Contact_EnableExceptionHandling4Corea></CscFeature_Contact_EnableExceptionHandling4Corea>
<CscFeature_Contact_EnableIcon4SyncContact></CscFeature_Contact_EnableIcon4SyncContact>
<CscFeature_Contact_EnableIPCall></CscFeature_Contact_EnableIPCall>
<CscFeature_Contact_EnableMenuGroupVideoCall></CscFeature_Contact_EnableMenuGroupVideoCall>
<CscFeature_Contact_EnableMenuMDN></CscFeature_Contact_EnableMenuMDN>
<CscFeature_Contact_EnableMenuStorageStatus></CscFeature_Contact_EnableMenuStorageStatus>
<CscFeature_Contact_EnableMultiplePinyinSearch></CscFeature_Contact_EnableMultiplePinyinSearch>
<CscFeature_Contact_EnableNotificationWhenDeviceMemoryFull></CscFeature_Contact_EnableNotificationWhenDeviceMemoryFull>
<CscFeature_Contact_EnableOptionToSelectEmailMMS4EmailAddress></CscFeature_Contact_EnableOptionToSelectEmailMMS4EmailAddress>
<CscFeature_Contact_EnablePromptToExitAndSaveInEditing></CscFeature_Contact_EnablePromptToExitAndSaveInEditing>
<CscFeature_Contact_EnablePuzzySearch></CscFeature_Contact_EnablePuzzySearch>
<CscFeature_Contact_EnableQRCode></CscFeature_Contact_EnableQRCode>
<CscFeature_Contact_EnableQuickContactBadgeInAllLogs></CscFeature_Contact_EnableQuickContactBadgeInAllLogs>
<CscFeature_Contact_EnableSelectableListToExportSdCard></CscFeature_Contact_EnableSelectableListToExportSdCard>
<CscFeature_Contact_EnableSelectAllAsMsgRecipient></CscFeature_Contact_EnableSelectAllAsMsgRecipient>
<CscFeature_Contact_EnableStrokeSortList></CscFeature_Contact_EnableStrokeSortList>
<CscFeature_Contact_EnableToastPopup4StopDeletingOperationByCall></CscFeature_Contact_EnableToastPopup4StopDeletingOperationByCall>
<CscFeature_Contact_ExportAllNumberToSIM></CscFeature_Contact_ExportAllNumberToSIM>
<CscFeature_Contact_ExportToSimPhoneAccountOnly></CscFeature_Contact_ExportToSimPhoneAccountOnly>
<CscFeature_Contact_ExtendSpeedDialTo100></CscFeature_Contact_ExtendSpeedDialTo100>
<CscFeature_Contact_FastScrollDepth></CscFeature_Contact_FastScrollDepth>
<CscFeature_Contact_FavoritesWidgetRows></CscFeature_Contact_FavoritesWidgetRows>
<CscFeature_Contact_FixMainTabWhenAppLaunched></CscFeature_Contact_FixMainTabWhenAppLaunched>
<CscFeature_Contact_ImProviderFirstPostion_As></CscFeature_Contact_ImProviderFirstPostion_As>
<CscFeature_Contact_LimitNameLength></CscFeature_Contact_LimitNameLength>
<CscFeature_Contact_MaxCountVcardAttachment></CscFeature_Contact_MaxCountVcardAttachment>
<CscFeature_Contact_ReplaceLabelDualModeSim></CscFeature_Contact_ReplaceLabelDualModeSim>
<CscFeature_Contact_SearchNameIgnoringCommonPrefix></CscFeature_Contact_SearchNameIgnoringCommonPrefix>
<CscFeature_Contact_SeparateLookupTable4ChinaDialerSearch></CscFeature_Contact_SeparateLookupTable4ChinaDialerSearch>
<CscFeature_Contact_SetLinkCountMaxAs></CscFeature_Contact_SetLinkCountMaxAs>
<CscFeature_Contact_UseMobileTypeAsDefaultWhenAddingNumber></CscFeature_Contact_UseMobileTypeAsDefaultWhenAddingNumber>
<CscFeature_Contact_UseSeparateAddressField></CscFeature_Contact_UseSeparateAddressField>
<CscFeature_Contact_UseUniNameField></CscFeature_Contact_UseUniNameField>
<CscFeature_Email_ActivateAccountWithPredefinedIdPwd></CscFeature_Email_ActivateAccountWithPredefinedIdPwd>
<CscFeature_Email_AddIspAccount></CscFeature_Email_AddIspAccount>
<CscFeature_Email_AlignmentForRTL></CscFeature_Email_AlignmentForRTL>
<CscFeature_Email_AnotherResolutionDisplay></CscFeature_Email_AnotherResolutionDisplay>
<CscFeature_Email_DisableAutoDomainGenerationDuringManualSetup></CscFeature_Email_DisableAutoDomainGenerationDuringManualSetup>
<CscFeature_Email_DisableFontAttributeDuringComposing></CscFeature_Email_DisableFontAttributeDuringComposing>
<CscFeature_Email_EasDisableOptionSyncInterval></CscFeature_Email_EasDisableOptionSyncInterval>
<CscFeature_Email_EasDoNotUseProxy></CscFeature_Email_EasDoNotUseProxy>
<CscFeature_Email_EasSyncServiceCommandTimeoutValue></CscFeature_Email_EasSyncServiceCommandTimeoutValue>
<CscFeature_Email_EasSyncServiceConnectionTimeoutValue></CscFeature_Email_EasSyncServiceConnectionTimeoutValue>
<CscFeature_Email_EnableAccountGenerationFromDM></CscFeature_Email_EnableAccountGenerationFromDM>
<CscFeature_Email_EnableDetailRecOption></CscFeature_Email_EnableDetailRecOption>
<CscFeature_Email_EnableIspAccount></CscFeature_Email_EnableIspAccount>
<CscFeature_Email_EnableLocalSymbolTable></CscFeature_Email_EnableLocalSymbolTable>
<CscFeature_Email_EnableNotiToMissedWidget></CscFeature_Email_EnableNotiToMissedWidget>
<CscFeature_Email_EnableNotiWhenFwdWithUndownloadedContents></CscFeature_Email_EnableNotiWhenFwdWithUndownloadedContents>
<CscFeature_Email_EnableOnDeviceHelp></CscFeature_Email_EnableOnDeviceHelp>
<CscFeature_Email_EnablePopupWhenChangingSyncSchedule></CscFeature_Email_EnablePopupWhenChangingSyncSchedule>
<CscFeature_Email_EnablePromptToSelectApp4EmailAddress></CscFeature_Email_EnablePromptToSelectApp4EmailAddress>
<CscFeature_Email_EnablePromptWhenSendingEmptySubject></CscFeature_Email_EnablePromptWhenSendingEmptySubject>
<CscFeature_Email_EnableSaveAsAttachment></CscFeature_Email_EnableSaveAsAttachment>
<CscFeature_Email_EnableSyncAndConnect></CscFeature_Email_EnableSyncAndConnect>
<CscFeature_Email_ReplaceHintDomainAs></CscFeature_Email_ReplaceHintDomainAs>
<CscFeature_Email_ReplaceNotiIcon4></CscFeature_Email_ReplaceNotiIcon4>
<CscFeature_Email_ReplaceUnsupportedCharWithUnderbarInAttachment></CscFeature_Email_ReplaceUnsupportedCharWithUnderbarInAttachment>
<CscFeature_Email_SetDownloadFolderNameByMimeType></CscFeature_Email_SetDownloadFolderNameByMimeType>
<CscFeature_Email_SetPermanentAccount></CscFeature_Email_SetPermanentAccount>
<CscFeature_Email_UseDefaultBrowserOnly4UrlLink></CscFeature_Email_UseDefaultBrowserOnly4UrlLink>
<CscFeature_Email_UseFixedBgColorAsWhite></CscFeature_Email_UseFixedBgColorAsWhite>
<CscFeature_Email_UseFixedSmtpPortAs></CscFeature_Email_UseFixedSmtpPortAs>
<CscFeature_FMRadioCHNSetting></CscFeature_FMRadioCHNSetting>
<CscFeature_FMRadio_BandWidthAs></CscFeature_FMRadio_BandWidthAs>
<CscFeature_FMRadio_DeconstantAs></CscFeature_FMRadio_DeconstantAs>
<CscFeature_FMRadio_DefaultChannelAs></CscFeature_FMRadio_DefaultChannelAs>
<CscFeature_FMRadio_DisableMenuAf></CscFeature_FMRadio_DisableMenuAf>
<CscFeature_FMRadio_DisableMenuRds></CscFeature_FMRadio_DisableMenuRds>
<CscFeature_FMRadio_DisableRTPlusInfo></CscFeature_FMRadio_DisableRTPlusInfo>
<CscFeature_FMRadio_FrequencySpaceAs></CscFeature_FMRadio_FrequencySpaceAs>
<CscFeature_FMRadio_RecordingVolumeAs></CscFeature_FMRadio_RecordingVolumeAs>
<CscFeature_FMRadio_SetLocalTunning></CscFeature_FMRadio_SetLocalTunning>
<CscFeature_Framework_CheckValidApp4SpecificMccMnc></CscFeature_Framework_CheckValidApp4SpecificMccMnc>
<CscFeature_Framework_DisableCompensationTouchAreaInScrollBar></CscFeature_Framework_DisableCompensationTouchAreaInScrollBar>
<CscFeature_Framework_EnableBidirection></CscFeature_Framework_EnableBidirection>
<CscFeature_Framework_EnableHarfbuzz></CscFeature_Framework_EnableHarfbuzz>
<CscFeature_Framework_EnableLinuxCommonApi4></CscFeature_Framework_EnableLinuxCommonApi4>
<CscFeature_Framework_EnableScrCaptureSoundOnlyInCamera></CscFeature_Framework_EnableScrCaptureSoundOnlyInCamera>
<CscFeature_Framework_EnableThaiVietReshaping></CscFeature_Framework_EnableThaiVietReshaping>
<CscFeature_Framework_FilterExtraPackage></CscFeature_Framework_FilterExtraPackage>
<CscFeature_Framework_HyperLinkDigit></CscFeature_Framework_HyperLinkDigit>
<CscFeature_Framework_InvalidateFlag4SplitTouch></CscFeature_Framework_InvalidateFlag4SplitTouch>
<CscFeature_Framework_ReplaceDataTypeIconAsOpBrand></CscFeature_Framework_ReplaceDataTypeIconAsOpBrand>
<CscFeature_Gallery_AddAutoRotationIcon></CscFeature_Gallery_AddAutoRotationIcon>
<CscFeature_Gallery_ChinaGsm_Change_Time_Format></CscFeature_Gallery_ChinaGsm_Change_Time_Format>
<CscFeature_Gallery_Delete_Location_Info></CscFeature_Gallery_Delete_Location_Info>
<CscFeature_Gallery_Delete_Menu_Offline></CscFeature_Gallery_Delete_Menu_Offline>
<CscFeature_Gallery_DisableMenuSetAsContact></CscFeature_Gallery_DisableMenuSetAsContact>
<CscFeature_Gallery_DisableMenuShareViaMsg></CscFeature_Gallery_DisableMenuShareViaMsg>
<CscFeature_Gallery_ReplaceMenu_AutoNavi></CscFeature_Gallery_ReplaceMenu_AutoNavi>
<CscFeature_GMS_DisableSetupWizard></CscFeature_GMS_DisableSetupWizard>
<CscFeature_GMS_ReplaceGMailBrandForGermany></CscFeature_GMS_ReplaceGMailBrandForGermany>
<CscFeature_GMS_SetClientIDBaseAm></CscFeature_GMS_SetClientIDBaseAm>
<CscFeature_GMS_SetClientIDBaseGmm></CscFeature_GMS_SetClientIDBaseGmm>
<CscFeature_GMS_SetClientIDBaseMs></CscFeature_GMS_SetClientIDBaseMs>
<CscFeature_GMS_SetClientIDBaseYt></CscFeature_GMS_SetClientIDBaseYt>
<CscFeature_IMS_EnableIMS></CscFeature_IMS_EnableIMS>
<CscFeature_IMS_EnableLTEVideoCall></CscFeature_IMS_EnableLTEVideoCall>
<CscFeature_IMS_EnableRCSe></CscFeature_IMS_EnableRCSe>
<CscFeature_IMS_EnableRCSPresence></CscFeature_IMS_EnableRCSPresence>
<CscFeature_IMS_EnableVoLTE></CscFeature_IMS_EnableVoLTE>
<CscFeature_IntegerTest></CscFeature_IntegerTest>
<CscFeature_IntegerTestNull></CscFeature_IntegerTestNull>
<CscFeature_Kies_DrCategory></CscFeature_Kies_DrCategory>
<CscFeature_Kies_NpsCategory></CscFeature_Kies_NpsCategory>
<CscFeature_Kies_SupportCategory></CscFeature_Kies_SupportCategory>
<CscFeature_Kies_WifiCategory></CscFeature_Kies_WifiCategory>
<CscFeature_Launcher_DisableFastScrollIndex></CscFeature_Launcher_DisableFastScrollIndex>
<CscFeature_Launcher_DisableGoogleOption></CscFeature_Launcher_DisableGoogleOption>
<CscFeature_Launcher_EnableViewByAlphabetAsDefault></CscFeature_Launcher_EnableViewByAlphabetAsDefault>
<CscFeature_Launcher_FixedStkTitleAs></CscFeature_Launcher_FixedStkTitleAs>
<CscFeature_Launcher_PromptToSelectApp4PhoneIcon></CscFeature_Launcher_PromptToSelectApp4PhoneIcon>
<CscFeature_Launcher_ReplaceHotseatAreaInEditMode></CscFeature_Launcher_ReplaceHotseatAreaInEditMode>
<CscFeature_LiveWallpaper_TopicWallNewsCPName></CscFeature_LiveWallpaper_TopicWallNewsCPName>
<CscFeature_LiveWallpaper_TopicWallStockCPName></CscFeature_LiveWallpaper_TopicWallStockCPName>
<CscFeature_LiveWallpaper_WeatherWallCPName></CscFeature_LiveWallpaper_WeatherWallCPName>
<CscFeature_LockScreen_DirectCallToEcc></CscFeature_LockScreen_DirectCallToEcc>
<CscFeature_LockScreen_DisplayPlmn></CscFeature_LockScreen_DisplayPlmn>
<CscFeature_MediaProvider_AddDB4VAS></CscFeature_MediaProvider_AddDB4VAS>
<CscFeature_MediaProvider_AddTable4VT></CscFeature_MediaProvider_AddTable4VT>
<CscFeature_MediaProvider_HideVoiceFilesInMusic></CscFeature_MediaProvider_HideVoiceFilesInMusic>
<CscFeature_MediaScanner_FixLocaleTo></CscFeature_MediaScanner_FixLocaleTo>
<CscFeature_Memo_DisableMemoSync></CscFeature_Memo_DisableMemoSync>
<CscFeature_Message_AddLogsToRecipientSearchList></CscFeature_Message_AddLogsToRecipientSearchList>
<CscFeature_Message_AddSendOptionInComposer></CscFeature_Message_AddSendOptionInComposer>
<CscFeature_Message_CbChannelNb4DisplayInStatusBar></CscFeature_Message_CbChannelNb4DisplayInStatusBar>
<CscFeature_Message_CheckMaxRecipientLength></CscFeature_Message_CheckMaxRecipientLength>
<CscFeature_Message_CheckTelNumAreaCode></CscFeature_Message_CheckTelNumAreaCode>
<CscFeature_Message_CMASDiscardDuplicatedMsg></CscFeature_Message_CMASDiscardDuplicatedMsg>
<CscFeature_Message_CMASDiscardPresidentialCategory></CscFeature_Message_CMASDiscardPresidentialCategory>
<CscFeature_Message_CMASDisplayDateDescriptionSeparately></CscFeature_Message_CMASDisplayDateDescriptionSeparately>
<CscFeature_Message_CMASDisplayLatest></CscFeature_Message_CMASDisplayLatest>
<CscFeature_Message_CMASDisplayNextMsg></CscFeature_Message_CMASDisplayNextMsg>
<CscFeature_Message_CMASEnableMenuAlertOption></CscFeature_Message_CMASEnableMenuAlertOption>
<CscFeature_Message_CMASEnableMenuTestCategory></CscFeature_Message_CMASEnableMenuTestCategory>
<CscFeature_Message_CMASEnableSoundAlert></CscFeature_Message_CMASEnableSoundAlert>
<CscFeature_Message_CMASEnableVibrationAlert></CscFeature_Message_CMASEnableVibrationAlert>
<CscFeature_Message_CMASOperator></CscFeature_Message_CMASOperator>
<CscFeature_Message_CMASReplaceLabel4></CscFeature_Message_CMASReplaceLabel4>
<CscFeature_Message_CMASSetPresidentialAsFirstPriority></CscFeature_Message_CMASSetPresidentialAsFirstPriority>
<CscFeature_Message_CMASSyncToServer4ExtremePriority></CscFeature_Message_CMASSyncToServer4ExtremePriority>
<CscFeature_Message_CMASTestCategoryRecSetting></CscFeature_Message_CMASTestCategoryRecSetting>
<CscFeature_Message_CMASThreadMethod></CscFeature_Message_CMASThreadMethod>
<CscFeature_Message_CMASTopPostion4UnreadMsg></CscFeature_Message_CMASTopPostion4UnreadMsg>
<CscFeature_Message_CreateNullDB4EmptyOriginator></CscFeature_Message_CreateNullDB4EmptyOriginator>
<CscFeature_Message_DisableAddRecipientsOption></CscFeature_Message_DisableAddRecipientsOption>
<CscFeature_Message_DisableBackgroundStyleWithImage></CscFeature_Message_DisableBackgroundStyleWithImage>
<CscFeature_Message_DisableCBNotifications></CscFeature_Message_DisableCBNotifications>
<CscFeature_Message_DisableContactThumbnailInMsgList></CscFeature_Message_DisableContactThumbnailInMsgList>
<CscFeature_Message_DisableConvertingEffectBetweenSMSMMS></CscFeature_Message_DisableConvertingEffectBetweenSMSMMS>
<CscFeature_Message_DisableCopyToSim></CscFeature_Message_DisableCopyToSim>
<CscFeature_Message_DisableDeleteButtonOnActionBar></CscFeature_Message_DisableDeleteButtonOnActionBar>
<CscFeature_Message_DisableDisplayNameAndNumberonTitle></CscFeature_Message_DisableDisplayNameAndNumberonTitle>
<CscFeature_Message_DisableEnterKeyInput></CscFeature_Message_DisableEnterKeyInput>
<CscFeature_Message_DisableLandscapeActionbarHide></CscFeature_Message_DisableLandscapeActionbarHide>
<CscFeature_Message_DisableLeftAttachButtonUI></CscFeature_Message_DisableLeftAttachButtonUI>
<CscFeature_Message_DisableLogs></CscFeature_Message_DisableLogs>
<CscFeature_Message_DisableMenuCBChannel></CscFeature_Message_DisableMenuCBChannel>
<CscFeature_Message_DisableMenuCBLanguage></CscFeature_Message_DisableMenuCBLanguage>
<CscFeature_Message_DisableMenuCBMessage></CscFeature_Message_DisableMenuCBMessage>
<CscFeature_Message_DisableMenuMmsCreationMode></CscFeature_Message_DisableMenuMmsCreationMode>
<CscFeature_Message_DisableMenuRequestMmsDeliveryReport></CscFeature_Message_DisableMenuRequestMmsDeliveryReport>
<CscFeature_Message_DisableMenuRequestMmsReadReport></CscFeature_Message_DisableMenuRequestMmsReadReport>
<CscFeature_Message_DisableMenuSIMMessages></CscFeature_Message_DisableMenuSIMMessages>
<CscFeature_Message_DisableMenuSMSC></CscFeature_Message_DisableMenuSMSC>
<CscFeature_Message_DisableMenuSmsDeliveryReports></CscFeature_Message_DisableMenuSmsDeliveryReports>
<CscFeature_Message_DisableMenuSmsInputMode></CscFeature_Message_DisableMenuSmsInputMode>
<CscFeature_Message_DisableMenuWapPush></CscFeature_Message_DisableMenuWapPush>
<CscFeature_Message_DisableMenuWapPushServiceLoading></CscFeature_Message_DisableMenuWapPushServiceLoading>
<CscFeature_Message_DisableMMS></CscFeature_Message_DisableMMS>
<CscFeature_Message_DisableMmsSlideshowAutoPlay></CscFeature_Message_DisableMmsSlideshowAutoPlay>
<CscFeature_Message_DisableMmsSubject></CscFeature_Message_DisableMmsSubject>
<CscFeature_Message_DisableOptionAttachAudio></CscFeature_Message_DisableOptionAttachAudio>
<CscFeature_Message_DisableOptionAttachLocation></CscFeature_Message_DisableOptionAttachLocation>
<CscFeature_Message_DisableOptionAttachVCalendar></CscFeature_Message_DisableOptionAttachVCalendar>
<CscFeature_Message_DisableOptionAttachVCard></CscFeature_Message_DisableOptionAttachVCard>
<CscFeature_Message_DisableOptionAttachVMemo></CscFeature_Message_DisableOptionAttachVMemo>
<CscFeature_Message_DisableOptionAttachVTask></CscFeature_Message_DisableOptionAttachVTask>
<CscFeature_Message_DisableOptionRecordAudio></CscFeature_Message_DisableOptionRecordAudio>
<CscFeature_Message_DisableOverlayInMsgList></CscFeature_Message_DisableOverlayInMsgList>
<CscFeature_Message_DisablePlusInputInAddressField></CscFeature_Message_DisablePlusInputInAddressField>
<CscFeature_Message_DisableRegisterToCalendar></CscFeature_Message_DisableRegisterToCalendar>
<CscFeature_Message_DisableSaveClassZeroMessage></CscFeature_Message_DisableSaveClassZeroMessage>
<CscFeature_Message_DisableSavingInbox4CbChannel></CscFeature_Message_DisableSavingInbox4CbChannel>
<CscFeature_Message_DisableSlideShow4SingleTextMms></CscFeature_Message_DisableSlideShow4SingleTextMms>
<CscFeature_Message_DisableSmscEditable></CscFeature_Message_DisableSmscEditable>
<CscFeature_Message_DisableSmsToMmsConversionByTextInput></CscFeature_Message_DisableSmsToMmsConversionByTextInput>
<CscFeature_Message_DiscardSpecificPortSms></CscFeature_Message_DiscardSpecificPortSms>
<CscFeature_Message_DiscardWapPush4SameTimeStamp></CscFeature_Message_DiscardWapPush4SameTimeStamp>
<CscFeature_Message_DisplayMmsTimeAs></CscFeature_Message_DisplayMmsTimeAs>
<CscFeature_Message_DisplayPushSenderAddress></CscFeature_Message_DisplayPushSenderAddress>
<CscFeature_Message_DisplaySmsTimeAs></CscFeature_Message_DisplaySmsTimeAs>
<CscFeature_Message_DMBootstrapHandledCp></CscFeature_Message_DMBootstrapHandledCp>
<CscFeature_Message_EmbeddedTextTemplateType></CscFeature_Message_EmbeddedTextTemplateType>
<CscFeature_Message_EnableAddContactIn1stDepthComposerOption></CscFeature_Message_EnableAddContactIn1stDepthComposerOption>
<CscFeature_Message_EnableAlias></CscFeature_Message_EnableAlias>
<CscFeature_Message_EnableAllContextMenuInMsgViewer></CscFeature_Message_EnableAllContextMenuInMsgViewer>
<CscFeature_Message_EnableAnonymousThread></CscFeature_Message_EnableAnonymousThread>
<CscFeature_Message_EnableBlackList></CscFeature_Message_EnableBlackList>
<CscFeature_Message_EnableCbsVariation4></CscFeature_Message_EnableCbsVariation4>
<CscFeature_Message_EnableCheckFDNContactWhenMMSSend></CscFeature_Message_EnableCheckFDNContactWhenMMSSend>
<CscFeature_Message_EnableCMAS4></CscFeature_Message_EnableCMAS4>
<CscFeature_Message_EnableContactInfoInBubble></CscFeature_Message_EnableContactInfoInBubble>
<CscFeature_Message_EnableDbBackupKeystring></CscFeature_Message_EnableDbBackupKeystring>
<CscFeature_Message_EnableDetailErrorPopupWhenSending></CscFeature_Message_EnableDetailErrorPopupWhenSending>
<CscFeature_Message_EnableDisplayTotalCount4SimMsg></CscFeature_Message_EnableDisplayTotalCount4SimMsg>
<CscFeature_Message_EnableDSAC></CscFeature_Message_EnableDSAC>
<CscFeature_Message_EnableEditingSenderAddress></CscFeature_Message_EnableEditingSenderAddress>
<CscFeature_Message_EnableEmailOverSMS></CscFeature_Message_EnableEmailOverSMS>
<CscFeature_Message_EnableExtendSlideTimeToMediaDuration></CscFeature_Message_EnableExtendSlideTimeToMediaDuration>
<CscFeature_Message_EnableFolderView></CscFeature_Message_EnableFolderView>
<CscFeature_Message_EnableHttpHeader4LGU></CscFeature_Message_EnableHttpHeader4LGU>
<CscFeature_Message_EnableLimitOnMmsSubject></CscFeature_Message_EnableLimitOnMmsSubject>
<CscFeature_Message_EnableListByLockedMessage></CscFeature_Message_EnableListByLockedMessage>
<CscFeature_Message_EnableLocalSymbolTable></CscFeature_Message_EnableLocalSymbolTable>
<CscFeature_Message_EnableMenuInsertSenderInfoWhenFwdMsg></CscFeature_Message_EnableMenuInsertSenderInfoWhenFwdMsg>
<CscFeature_Message_EnableMenuMessageSignature></CscFeature_Message_EnableMenuMessageSignature>
<CscFeature_Message_EnableMenuMmsDeliveryTime></CscFeature_Message_EnableMenuMmsDeliveryTime>
<CscFeature_Message_EnableMenuMmsExpiryDate></CscFeature_Message_EnableMenuMmsExpiryDate>
<CscFeature_Message_EnableMenuMmsPriority></CscFeature_Message_EnableMenuMmsPriority>
<CscFeature_Message_EnableMenuMmsServerAddress></CscFeature_Message_EnableMenuMmsServerAddress>
<CscFeature_Message_EnableMenuRemindAlert></CscFeature_Message_EnableMenuRemindAlert>
<CscFeature_Message_EnableMenuSendMmsDeliveryReport></CscFeature_Message_EnableMenuSendMmsDeliveryReport>
<CscFeature_Message_EnableMenuSmsExpiryDate></CscFeature_Message_EnableMenuSmsExpiryDate>
<CscFeature_Message_EnableMenuVideoCallInConvList></CscFeature_Message_EnableMenuVideoCallInConvList>
<CscFeature_Message_EnableMesageAutoView></CscFeature_Message_EnableMesageAutoView>
<CscFeature_Message_EnableMessageMaxTextLengthInAllSlides></CscFeature_Message_EnableMessageMaxTextLengthInAllSlides>
<CscFeature_Message_EnableMessagePriorityDuringComposing></CscFeature_Message_EnableMessagePriorityDuringComposing>
<CscFeature_Message_EnableMessageSentTimeInSimList></CscFeature_Message_EnableMessageSentTimeInSimList>
<CscFeature_Message_EnableMmsAutoDownload4Spam></CscFeature_Message_EnableMmsAutoDownload4Spam>
<CscFeature_Message_EnableMmsErrorCodeInDetailView></CscFeature_Message_EnableMmsErrorCodeInDetailView>
<CscFeature_Message_EnableMmsOnePageViewer></CscFeature_Message_EnableMmsOnePageViewer>
<CscFeature_Message_EnableMMSReadreportV10></CscFeature_Message_EnableMMSReadreportV10>
<CscFeature_Message_EnableMmsUaUapAutoCreate></CscFeature_Message_EnableMmsUaUapAutoCreate>
<CscFeature_Message_EnableMmsUnicodeFilenameEncoding></CscFeature_Message_EnableMmsUnicodeFilenameEncoding>
<CscFeature_Message_EnableMsgTypeIndicationDuringComposing></CscFeature_Message_EnableMsgTypeIndicationDuringComposing>
<CscFeature_Message_EnableMultiCopyToSim></CscFeature_Message_EnableMultiCopyToSim>
<CscFeature_Message_EnableMultiDraftBox></CscFeature_Message_EnableMultiDraftBox>
<CscFeature_Message_EnableMultiLockMenu></CscFeature_Message_EnableMultiLockMenu>
<CscFeature_Message_EnableNotificationBroadcastReceivedMessage></CscFeature_Message_EnableNotificationBroadcastReceivedMessage>
<CscFeature_Message_EnableNotificationVibrate></CscFeature_Message_EnableNotificationVibrate>
<CscFeature_Message_EnableOptionAccessToUsimMsg></CscFeature_Message_EnableOptionAccessToUsimMsg>
<CscFeature_Message_EnablePhoneNumberFormattingInMsg></CscFeature_Message_EnablePhoneNumberFormattingInMsg>
<CscFeature_Message_EnablePinyinSearch></CscFeature_Message_EnablePinyinSearch>
<CscFeature_Message_EnableRegisterToCalender></CscFeature_Message_EnableRegisterToCalender>
<CscFeature_Message_EnableReplyAll></CscFeature_Message_EnableReplyAll>
<CscFeature_Message_EnableRoamGuard></CscFeature_Message_EnableRoamGuard>
<CscFeature_Message_EnableSaveVMessage></CscFeature_Message_EnableSaveVMessage>
<CscFeature_Message_EnableScheduledMessage></CscFeature_Message_EnableScheduledMessage>
<CscFeature_Message_EnableScheduledMsgBox></CscFeature_Message_EnableScheduledMsgBox>
<CscFeature_Message_EnableSearchByInitialConsonant></CscFeature_Message_EnableSearchByInitialConsonant>
<CscFeature_Message_EnableSegmentedSMS></CscFeature_Message_EnableSegmentedSMS>
<CscFeature_Message_EnableSendingEmptySms></CscFeature_Message_EnableSendingEmptySms>
Empty Code Strings (Part 2 of 2) for Feature.xml (settings)
- Use these to try out new Mod's, if you find Something worked, post results!
- with "Notepad++", you can use... "Search" - "Find" to check if lines are duplicates
Empty Code Strings (NO Values inside ><) Part 2 of 2 for Feature.xml (settings)
Code:
<CscFeature_Message_EnableSmsCallbackNumber></CscFeature_Message_EnableSmsCallbackNumber>
<CscFeature_Message_EnableSmsForwardPrefix></CscFeature_Message_EnableSmsForwardPrefix>
<CscFeature_Message_EnableSmsKsc5601Encoding></CscFeature_Message_EnableSmsKsc5601Encoding>
<CscFeature_Message_EnableSMSPcheckWhenSendSMS></CscFeature_Message_EnableSMSPcheckWhenSendSMS>
<CscFeature_Message_EnableSmsSubject></CscFeature_Message_EnableSmsSubject>
<CscFeature_Message_EnableSmsViewer></CscFeature_Message_EnableSmsViewer>
<CscFeature_Message_EnableSpeedDial></CscFeature_Message_EnableSpeedDial>
<CscFeature_Message_EnableStageFlightLib></CscFeature_Message_EnableStageFlightLib>
<CscFeature_Message_EnableStrictImageResizing></CscFeature_Message_EnableStrictImageResizing>
<CscFeature_Message_EnableTextFieldColor></CscFeature_Message_EnableTextFieldColor>
<CscFeature_Message_EnableTextTemplate></CscFeature_Message_EnableTextTemplate>
<CscFeature_Message_EnableTextTemplateButton></CscFeature_Message_EnableTextTemplateButton>
<CscFeature_Message_EnableUnifiedMmsRetrieveMenu></CscFeature_Message_EnableUnifiedMmsRetrieveMenu>
<CscFeature_Message_GalleryView4SingleImageMms></CscFeature_Message_GalleryView4SingleImageMms>
<CscFeature_Message_HookMobileTrackerPrefix2SosMsg></CscFeature_Message_HookMobileTrackerPrefix2SosMsg>
<CscFeature_Message_InstallDMInBGCp></CscFeature_Message_InstallDMInBGCp>
<CscFeature_Message_KeepSmilPlayerToolBar></CscFeature_Message_KeepSmilPlayerToolBar>
<CscFeature_Message_MaxRecipientLengthAs></CscFeature_Message_MaxRecipientLengthAs>
<CscFeature_Message_MinRecipientLengthAs></CscFeature_Message_MinRecipientLengthAs>
<CscFeature_Message_MinSlideDuration></CscFeature_Message_MinSlideDuration>
<CscFeature_Message_MMSMaxCharPerSlide></CscFeature_Message_MMSMaxCharPerSlide>
<CscFeature_Message_MmsModeCaptureVideoBitRate></CscFeature_Message_MmsModeCaptureVideoBitRate>
<CscFeature_Message_MmsModeCaptureVideoMaxDuration></CscFeature_Message_MmsModeCaptureVideoMaxDuration>
<CscFeature_Message_MmsModeCaptureVideoMaxSize></CscFeature_Message_MmsModeCaptureVideoMaxSize>
<CscFeature_Message_MmsModeCaptureVideoResolution></CscFeature_Message_MmsModeCaptureVideoResolution>
<CscFeature_Message_PositionTextTemplateMenu></CscFeature_Message_PositionTextTemplateMenu>
<CscFeature_Message_RemoveInternationalTelNumPrefix></CscFeature_Message_RemoveInternationalTelNumPrefix>
<CscFeature_Message_ReplaceChar4UnsupportedInKsc5601></CscFeature_Message_ReplaceChar4UnsupportedInKsc5601>
<CscFeature_Message_ReplaceCRToNewLine></CscFeature_Message_ReplaceCRToNewLine>
<CscFeature_Message_ReplaceLabel4RetreivedMsg></CscFeature_Message_ReplaceLabel4RetreivedMsg>
<CscFeature_Message_ReplaceLabelOnPendingStatusWhenNoSvc></CscFeature_Message_ReplaceLabelOnPendingStatusWhenNoSvc>
<CscFeature_Message_ReplaceLabelOnRequestedStatus></CscFeature_Message_ReplaceLabelOnRequestedStatus>
<CscFeature_Message_SetDefaultFocusToMessageBody></CscFeature_Message_SetDefaultFocusToMessageBody>
<CscFeature_Message_SmsDiscardPrefix></CscFeature_Message_SmsDiscardPrefix>
<CscFeature_Message_SmsMaxByte></CscFeature_Message_SmsMaxByte>
<CscFeature_Message_SupportBcdAlphabetInSMSAddress></CscFeature_Message_SupportBcdAlphabetInSMSAddress>
<CscFeature_Message_UaProfUrl></CscFeature_Message_UaProfUrl>
<CscFeature_Message_UseAddrWithinMMSWhenSendACK></CscFeature_Message_UseAddrWithinMMSWhenSendACK>
<CscFeature_Message_UseCliDigit4MakingConvThread></CscFeature_Message_UseCliDigit4MakingConvThread>
<CscFeature_Message_UseDefaultBrowserOnly4UrlLink></CscFeature_Message_UseDefaultBrowserOnly4UrlLink>
<CscFeature_Message_UseForwardPrefixAs></CscFeature_Message_UseForwardPrefixAs>
<CscFeature_Message_UserAgent></CscFeature_Message_UserAgent>
<CscFeature_Message_UseSingleShiftTableWhenComposeSMS></CscFeature_Message_UseSingleShiftTableWhenComposeSMS>
<CscFeature_Message_VolumeLevelDuringCall></CscFeature_Message_VolumeLevelDuringCall>
<CscFeature_MiniDiary_DisableAccWeatherInfo></CscFeature_MiniDiary_DisableAccWeatherInfo>
<CscFeature_MiniDiary_DisableChinaSns></CscFeature_MiniDiary_DisableChinaSns>
<CscFeature_MiniDiary_DisableGoogleLocationInfo></CscFeature_MiniDiary_DisableGoogleLocationInfo>
<CscFeature_MiniDiary_EnableLocalSns></CscFeature_MiniDiary_EnableLocalSns>
<CscFeature_Music_BlockHeadsetKeyDuringFactoryMode></CscFeature_Music_BlockHeadsetKeyDuringFactoryMode>
<CscFeature_Music_DisableFindTag></CscFeature_Music_DisableFindTag>
<CscFeature_Music_EnableBigPondTop10Feeds></CscFeature_Music_EnableBigPondTop10Feeds>
<CscFeature_Music_EnableLinkToBigPond></CscFeature_Music_EnableLinkToBigPond>
<CscFeature_Music_PauseForTCloudPlaying></CscFeature_Music_PauseForTCloudPlaying>
<CscFeature_Music_PauseMusicDuringVoiceRecording></CscFeature_Music_PauseMusicDuringVoiceRecording>
<CscFeature_Music_RingtoneSizeLimit></CscFeature_Music_RingtoneSizeLimit>
<CscFeature_Music_SupportChinaMusicHub></CscFeature_Music_SupportChinaMusicHub>
<CscFeature_Music_SupportOdfFile></CscFeature_Music_SupportOdfFile>
<CscFeature_Music_SupportPinyinSort></CscFeature_Music_SupportPinyinSort>
<CscFeature_Music_TranslateUnknownTitle></CscFeature_Music_TranslateUnknownTitle>
<CscFeature_MyFiles_EnableDirectorySearch></CscFeature_MyFiles_EnableDirectorySearch>
<CscFeature_MyFiles_EnablePinyinSort></CscFeature_MyFiles_EnablePinyinSort>
<CscFeature_MyFiles_ProtectDataFolder></CscFeature_MyFiles_ProtectDataFolder>
<CscFeature_MyFiles_SupportRmvbFileFormat></CscFeature_MyFiles_SupportRmvbFileFormat>
<CscFeature_NFC_DefaultCardModeConfig></CscFeature_NFC_DefaultCardModeConfig>
<CscFeature_NFC_DisableDiscoveryDuringCall></CscFeature_NFC_DisableDiscoveryDuringCall>
<CscFeature_NFC_MarketAppBeamChinaCU></CscFeature_NFC_MarketAppBeamChinaCU>
<CscFeature_NFC_SetAccessControlType></CscFeature_NFC_SetAccessControlType>
<CscFeature_NFC_SetCardModeActivationTime></CscFeature_NFC_SetCardModeActivationTime>
<CscFeature_NFC_SetOffAsDefault></CscFeature_NFC_SetOffAsDefault>
<CscFeature_NFC_SetSecureEventType></CscFeature_NFC_SetSecureEventType>
<CscFeature_NFC_StatusBarIconType></CscFeature_NFC_StatusBarIconType>
<CscFeature_Phone_DisableEnterNCK></CscFeature_Phone_DisableEnterNCK>
<CscFeature_Phone_DisableQuitNetworkLockByManual></CscFeature_Phone_DisableQuitNetworkLockByManual>
<CscFeature_RIL_CallerIdMatchingDigit></CscFeature_RIL_CallerIdMatchingDigit>
<CscFeature_RIL_CellBroadcastPCL></CscFeature_RIL_CellBroadcastPCL>
<CscFeature_RIL_ConvertGsmExtendedCharTurkish></CscFeature_RIL_ConvertGsmExtendedCharTurkish>
<CscFeature_RIL_ConvertNonGsmCharHungarian></CscFeature_RIL_ConvertNonGsmCharHungarian>
<CscFeature_RIL_DefaultDataStateFalse></CscFeature_RIL_DefaultDataStateFalse>
<CscFeature_RIL_DisableAutoSimProfile></CscFeature_RIL_DisableAutoSimProfile>
<CscFeature_RIL_DisableEditDefaultAPN></CscFeature_RIL_DisableEditDefaultAPN>
<CscFeature_RIL_DisableEditingVMNumber></CscFeature_RIL_DisableEditingVMNumber>
<CscFeature_RIL_DisableFastDormancyOnTethering></CscFeature_RIL_DisableFastDormancyOnTethering>
<CscFeature_RIL_DisablePromptPopup4SIMProfileSelection></CscFeature_RIL_DisablePromptPopup4SIMProfileSelection>
<CscFeature_RIL_DisableSimToolKitCmds></CscFeature_RIL_DisableSimToolKitCmds>
<CscFeature_RIL_DisplayRatInfoInManualNetSearchList></CscFeature_RIL_DisplayRatInfoInManualNetSearchList>
<CscFeature_RIL_DisplaySpnOnlyInCaseSamePlmn></CscFeature_RIL_DisplaySpnOnlyInCaseSamePlmn>
<CscFeature_RIL_EmptyMsgCopyToSim></CscFeature_RIL_EmptyMsgCopyToSim>
<CscFeature_RIL_Enable2DigitCall></CscFeature_RIL_Enable2DigitCall>
<CscFeature_RIL_EnableBIP></CscFeature_RIL_EnableBIP>
<CscFeature_RIL_EnableCallBarringConnectToUssd></CscFeature_RIL_EnableCallBarringConnectToUssd>
<CscFeature_RIL_EnableCallBlock4TDF></CscFeature_RIL_EnableCallBlock4TDF>
<CscFeature_RIL_EnableOnsDisplay></CscFeature_RIL_EnableOnsDisplay>
<CscFeature_RIL_EnableRoamingIcon4NationalRoaming></CscFeature_RIL_EnableRoamingIcon4NationalRoaming>
<CscFeature_RIL_EnableTotalCallTime></CscFeature_RIL_EnableTotalCallTime>
<CscFeature_RIL_FixedStkMenu></CscFeature_RIL_FixedStkMenu>
<CscFeature_RIL_ForceConnectMMS></CscFeature_RIL_ForceConnectMMS>
<CscFeature_RIL_ForceDeactivatePDPOnPhoneOff></CscFeature_RIL_ForceDeactivatePDPOnPhoneOff>
<CscFeature_RIL_HandleInvalidTimezonOffset></CscFeature_RIL_HandleInvalidTimezonOffset>
<CscFeature_RIL_HideTetheringAPN></CscFeature_RIL_HideTetheringAPN>
<CscFeature_RIL_IgnoreNitzNetworkName></CscFeature_RIL_IgnoreNitzNetworkName>
<CscFeature_RIL_IgnoreUnusedCfFacility></CscFeature_RIL_IgnoreUnusedCfFacility>
<CscFeature_RIL_IgnoreWrongNITZInformation></CscFeature_RIL_IgnoreWrongNITZInformation>
<CscFeature_RIL_ImeiTracker></CscFeature_RIL_ImeiTracker>
<CscFeature_RIL_KtSmsDbSchema></CscFeature_RIL_KtSmsDbSchema>
<CscFeature_RIL_LgtSmsDbSchema></CscFeature_RIL_LgtSmsDbSchema>
<CscFeature_RIL_NationalRoamingOption></CscFeature_RIL_NationalRoamingOption>
<CscFeature_RIL_OverridePlmn></CscFeature_RIL_OverridePlmn>
<CscFeature_RIL_PDPRetryMechanism4></CscFeature_RIL_PDPRetryMechanism4>
<CscFeature_RIL_PLMNFaking4Mvno></CscFeature_RIL_PLMNFaking4Mvno>
<CscFeature_RIL_PlusCodeCtc></CscFeature_RIL_PlusCodeCtc>
<CscFeature_RIL_RemoveDuplicatedNetDuringManualSearch></CscFeature_RIL_RemoveDuplicatedNetDuringManualSearch>
<CscFeature_RIL_ReplaceImeiSalesCodeAs></CscFeature_RIL_ReplaceImeiSalesCodeAs>
<CscFeature_RIL_SetSmsBearer></CscFeature_RIL_SetSmsBearer>
<CscFeature_RIL_ShowRatInNetworkList></CscFeature_RIL_ShowRatInNetworkList>
<CscFeature_RIL_SkSmsDbSchema></CscFeature_RIL_SkSmsDbSchema>
<CscFeature_RIL_SmsSendFailSpecialAreaCtc></CscFeature_RIL_SmsSendFailSpecialAreaCtc>
<CscFeature_RIL_SupportUssdWithSharpChar></CscFeature_RIL_SupportUssdWithSharpChar>
<CscFeature_RIL_UssdConnectToCall></CscFeature_RIL_UssdConnectToCall>
<CscFeature_RIL_WapPushCtc></CscFeature_RIL_WapPushCtc>
<CscFeature_RIL_WapPushDsNotificationMyPhonebook></CscFeature_RIL_WapPushDsNotificationMyPhonebook>
<CscFeature_Security_DisableOmaDrm></CscFeature_Security_DisableOmaDrm>
<CscFeature_Settig_EnableDataTariffWizard></CscFeature_Settig_EnableDataTariffWizard>
<CscFeature_Settings_Airplane_Wifi_Dependency></CscFeature_Settings_Airplane_Wifi_Dependency>
<CscFeature_Settings_FindMyMobile></CscFeature_Settings_FindMyMobile>
<CscFeature_Settings_Reset_Password></CscFeature_Settings_Reset_Password>
<CscFeature_Setting_DataRoamingOption></CscFeature_Setting_DataRoamingOption>
<CscFeature_Setting_DisableIsraelCountry></CscFeature_Setting_DisableIsraelCountry>
<CscFeature_Setting_DisableMenuBearerInApnEdit></CscFeature_Setting_DisableMenuBearerInApnEdit>
<CscFeature_Setting_DisableMenuFindMyMobile></CscFeature_Setting_DisableMenuFindMyMobile>
<CscFeature_Setting_DisableMenuSoftwareUpdate></CscFeature_Setting_DisableMenuSoftwareUpdate>
<CscFeature_Setting_DisableNetworkMode></CscFeature_Setting_DisableNetworkMode>
<CscFeature_Setting_EditOption4ApnType></CscFeature_Setting_EditOption4ApnType>
<CscFeature_Setting_EnableConversion4MEIDAndESN></CscFeature_Setting_EnableConversion4MEIDAndESN>
<CscFeature_Setting_EnableDataRoamingMenuInDetail></CscFeature_Setting_EnableDataRoamingMenuInDetail>
<CscFeature_Setting_EnableDataServicePopup></CscFeature_Setting_EnableDataServicePopup>
<CscFeature_Setting_EnableDeviceInfo4Vzw></CscFeature_Setting_EnableDeviceInfo4Vzw>
<CscFeature_Setting_EnableEditingIpVersionType></CscFeature_Setting_EnableEditingIpVersionType>
<CscFeature_Setting_EnableFactoryResetPasswordWhenNoSIM></CscFeature_Setting_EnableFactoryResetPasswordWhenNoSIM>
<CscFeature_Setting_EnableHwVersionDisplay></CscFeature_Setting_EnableHwVersionDisplay>
<CscFeature_Setting_EnableMenuBlockCallMsg></CscFeature_Setting_EnableMenuBlockCallMsg>
<CscFeature_Setting_EnableMenuDownloadContents></CscFeature_Setting_EnableMenuDownloadContents>
<CscFeature_Setting_EnableMyPhonebookAccount></CscFeature_Setting_EnableMyPhonebookAccount>
<CscFeature_Setting_EnablePromptPopupWhenActivatingDataConnection></CscFeature_Setting_EnablePromptPopupWhenActivatingDataConnection>
<CscFeature_Setting_EnableRoamingMenu></CscFeature_Setting_EnableRoamingMenu>
<CscFeature_Setting_EnableSeparateSilentModeFromVolumeControl></CscFeature_Setting_EnableSeparateSilentModeFromVolumeControl>
<CscFeature_Setting_EnableSimChangeAlertOnly4FindMobile></CscFeature_Setting_EnableSimChangeAlertOnly4FindMobile>
<CscFeature_Setting_FixApn4SpecificMccMnc></CscFeature_Setting_FixApn4SpecificMccMnc>
<CscFeature_Setting_OperatorSpecificPreConfigKeyString></CscFeature_Setting_OperatorSpecificPreConfigKeyString>
<CscFeature_Setting_RemoveDisableButtonInAppMgr></CscFeature_Setting_RemoveDisableButtonInAppMgr>
<CscFeature_Setting_SkipStepsDuringSamsungSetupWizard></CscFeature_Setting_SkipStepsDuringSamsungSetupWizard>
<CscFeature_Setting_SkipWifiActvDuringSetupWizard></CscFeature_Setting_SkipWifiActvDuringSetupWizard>
<CscFeature_Setting_UseDefaultTtsEngineAs></CscFeature_Setting_UseDefaultTtsEngineAs>
<CscFeature_Setting_UseMyPhonebookAppNameAs></CscFeature_Setting_UseMyPhonebookAppNameAs>
<CscFeature_Sip_DefaultMultiModalKeyAs></CscFeature_Sip_DefaultMultiModalKeyAs>
<CscFeature_Sip_DisableAutoCorrection></CscFeature_Sip_DisableAutoCorrection>
<CscFeature_Sip_DisableMenuKeyboardSwipe></CscFeature_Sip_DisableMenuKeyboardSwipe>
<CscFeature_Sip_DisableMultiInputLanuage></CscFeature_Sip_DisableMultiInputLanuage>
<CscFeature_Sip_DisableSpaceSuggestion></CscFeature_Sip_DisableSpaceSuggestion>
<CscFeature_Sip_EnableContinuousInputInAllEditField></CscFeature_Sip_EnableContinuousInputInAllEditField>
<CscFeature_SIP_EnablePreferredEnglishTypeAsUS></CscFeature_SIP_EnablePreferredEnglishTypeAsUS>
<CscFeature_Sip_EnableSecondarySymbol></CscFeature_Sip_EnableSecondarySymbol>
<CscFeature_Sip_NotIncludeSamsungKeypad></CscFeature_Sip_NotIncludeSamsungKeypad>
<CscFeature_Sip_ReplaceLabelOnContinuousInput></CscFeature_Sip_ReplaceLabelOnContinuousInput>
<CscFeature_Sip_ReplaceLocalCurrencyAs></CscFeature_Sip_ReplaceLocalCurrencyAs>
<CscFeature_Streaming_AddCommandCondition4MusicholicApp></CscFeature_Streaming_AddCommandCondition4MusicholicApp>
<CscFeature_Streaming_DrivingTestTunning4></CscFeature_Streaming_DrivingTestTunning4>
<CscFeature_Streaming_SupportMultiAPN></CscFeature_Streaming_SupportMultiAPN>
<CscFeature_StringTest></CscFeature_StringTest>
<CscFeature_StringTestNull></CscFeature_StringTestNull>
<CscFeature_SyncML_DefaultLocalConfig></CscFeature_SyncML_DefaultLocalConfig>
<CscFeature_SyncML_DeleteCpAfterTryingToInstall></CscFeature_SyncML_DeleteCpAfterTryingToInstall>
<CscFeature_SyncML_DisableDisclaimer4SwUpdate></CscFeature_SyncML_DisableDisclaimer4SwUpdate>
<CscFeature_SyncML_DisableDisclaimerSelectCountryList4SwUpdate></CscFeature_SyncML_DisableDisclaimerSelectCountryList4SwUpdate>
<CscFeature_SyncML_DisableMultipleApnCp></CscFeature_SyncML_DisableMultipleApnCp>
<CscFeature_SyncML_DiscardCpSecurityType4></CscFeature_SyncML_DiscardCpSecurityType4>
<CscFeature_SyncML_DiscardInvalidNetwpinCp></CscFeature_SyncML_DiscardInvalidNetwpinCp>
<CscFeature_SyncML_EnableCpValidiationSecurityType4></CscFeature_SyncML_EnableCpValidiationSecurityType4>
<CscFeature_SyncML_EnableLimitationDeltaSizeViaMobileNet></CscFeature_SyncML_EnableLimitationDeltaSizeViaMobileNet>
<CscFeature_SyncML_EnableNotiDeltaBinarySizeBeforeDownload></CscFeature_SyncML_EnableNotiDeltaBinarySizeBeforeDownload>
<CscFeature_SyncML_EnableShowVersionNameAferSuccessfulUpdate></CscFeature_SyncML_EnableShowVersionNameAferSuccessfulUpdate>
<CscFeature_SyncML_FOTA_Operator></CscFeature_SyncML_FOTA_Operator>
<CscFeature_SyncML_IntervalToNotifyDisclaimer4SwUpdate></CscFeature_SyncML_IntervalToNotifyDisclaimer4SwUpdate>
<CscFeature_SyncML_MyPhonebookISD></CscFeature_SyncML_MyPhonebookISD>
<CscFeature_SyncML_OverwriteApn4SameProfileName></CscFeature_SyncML_OverwriteApn4SameProfileName>
<CscFeature_SyncML_PushTypeToTriggerSwUpdate></CscFeature_SyncML_PushTypeToTriggerSwUpdate>
<CscFeature_SyncML_SetEntryUI4SoftwareUpdateWidget></CscFeature_SyncML_SetEntryUI4SoftwareUpdateWidget>
<CscFeature_SyncML_SwUpdateActionDuringRoaming></CscFeature_SyncML_SwUpdateActionDuringRoaming>
<CscFeature_VoiceCall_AddLogsItem4SearchApp></CscFeature_VoiceCall_AddLogsItem4SearchApp>
<CscFeature_VoiceCall_DisableAutoAnswerInSilentNEarjactMode></CscFeature_VoiceCall_DisableAutoAnswerInSilentNEarjactMode>
<CscFeature_VoiceCall_DisableEditingCallerID></CscFeature_VoiceCall_DisableEditingCallerID>
<CscFeature_VoiceCall_DisablePopupMsgWhenDeactivtingCallForwarding></CscFeature_VoiceCall_DisablePopupMsgWhenDeactivtingCallForwarding>
<CscFeature_VoiceCall_DisableToastPopupWhenMOConditionalCallForwarding></CscFeature_VoiceCall_DisableToastPopupWhenMOConditionalCallForwarding>
<CscFeature_VoiceCall_DisableUssdCancelPopup></CscFeature_VoiceCall_DisableUssdCancelPopup>
<CscFeature_VoiceCall_EnableBeepVibration4UssdAlert></CscFeature_VoiceCall_EnableBeepVibration4UssdAlert>
<CscFeature_VoiceCall_EnableBlockFdnWithParticularLine></CscFeature_VoiceCall_EnableBlockFdnWithParticularLine>
<CscFeature_VoiceCall_EnableCallButtonInFdnList></CscFeature_VoiceCall_EnableCallButtonInFdnList>
<CscFeature_VoiceCall_EnableDetailCallEndCause></CscFeature_VoiceCall_EnableDetailCallEndCause>
<CscFeature_VoiceCall_EnableDisplaySdnNameDuringCall></CscFeature_VoiceCall_EnableDisplaySdnNameDuringCall>
<CscFeature_VoiceCall_EnableDisplayVMTelNumDuringCall></CscFeature_VoiceCall_EnableDisplayVMTelNumDuringCall>
<CscFeature_VoiceCall_EnablePrefix4LongDistanceCallAs></CscFeature_VoiceCall_EnablePrefix4LongDistanceCallAs>
<CscFeature_VoiceCall_EnableSeparateCallReject></CscFeature_VoiceCall_EnableSeparateCallReject>
<CscFeature_VoiceCall_EnableSSC></CscFeature_VoiceCall_EnableSSC>
<CscFeature_VoiceCall_EnableVmsNumberAsDefaultInCallForwarding></CscFeature_VoiceCall_EnableVmsNumberAsDefaultInCallForwarding>
<CscFeature_VoiceCall_IPCallPrefix></CscFeature_VoiceCall_IPCallPrefix>
<CscFeature_VoiceCall_KeypadTypeToDigit4UssdInput></CscFeature_VoiceCall_KeypadTypeToDigit4UssdInput>
<CscFeature_VoiceCall_RemoveCallButtonInLogsList></CscFeature_VoiceCall_RemoveCallButtonInLogsList>
<CscFeature_VoiceCall_ServiceNumberDisplay></CscFeature_VoiceCall_ServiceNumberDisplay>
<CscFeature_VoiceCall_TotalCallTime></CscFeature_VoiceCall_TotalCallTime>
<CscFeature_VoiceCall_UseEccDialerInCaseOfNoInternalMemory></CscFeature_VoiceCall_UseEccDialerInCaseOfNoInternalMemory>
<CscFeature_VoiceCall_VvmHotKeyAs></CscFeature_VoiceCall_VvmHotKeyAs>
<CscFeature_VoiceRecorder_SaveAsSoundFile></CscFeature_VoiceRecorder_SaveAsSoundFile>
<CscFeature_VoiceRecorder_UseEnglishDefaultName></CscFeature_VoiceRecorder_UseEnglishDefaultName>
<CscFeature_Voicetalk_EmbeddedSpeechRecognizer></CscFeature_Voicetalk_EmbeddedSpeechRecognizer>
<CscFeature_Voicetalk_VoiceAuthentication></CscFeature_Voicetalk_VoiceAuthentication>
<CscFeature_Web_AddOptionToTerminate></CscFeature_Web_AddOptionToTerminate>
<CscFeature_Web_BlockSDCDDownload></CscFeature_Web_BlockSDCDDownload>
<CscFeature_Web_BlockZoomBaseOnTouchPosition></CscFeature_Web_BlockZoomBaseOnTouchPosition>
<CscFeature_Web_Bool_BlockChargeAtHighTemperature></CscFeature_Web_Bool_BlockChargeAtHighTemperature>
<CscFeature_Web_Bool_DisableSetFactoryResetHomeToPrefHome></CscFeature_Web_Bool_DisableSetFactoryResetHomeToPrefHome>
<CscFeature_Web_Bool_EnableEmoji></CscFeature_Web_Bool_EnableEmoji>
<CscFeature_Web_Bool_EnableUAProfile></CscFeature_Web_Bool_EnableUAProfile>
<CscFeature_Web_Bool_SkipSettingDefaultBookmarkImage></CscFeature_Web_Bool_SkipSettingDefaultBookmarkImage>
<CscFeature_Web_Bool_UseTempModelName></CscFeature_Web_Bool_UseTempModelName>
<CscFeature_Web_DisableAllSearchEngineExceptGoogle></CscFeature_Web_DisableAllSearchEngineExceptGoogle>
<CscFeature_Web_DisableChooser4></CscFeature_Web_DisableChooser4>
<CscFeature_Web_DisableGoogleInBrowserSearchEngine></CscFeature_Web_DisableGoogleInBrowserSearchEngine>
<CscFeature_Web_DisableMenuSaveContentsInAnchorLink></CscFeature_Web_DisableMenuSaveContentsInAnchorLink>
<CscFeature_Web_DisableMostVisitedHomepage></CscFeature_Web_DisableMostVisitedHomepage>
<CscFeature_Web_DisableRedirectionChooser></CscFeature_Web_DisableRedirectionChooser>
<CscFeature_Web_DisableRSS></CscFeature_Web_DisableRSS>
<CscFeature_Web_DisableVoiceSearch></CscFeature_Web_DisableVoiceSearch>
<CscFeature_Web_EnableAutoBookmarkSetBySim></CscFeature_Web_EnableAutoBookmarkSetBySim>
<CscFeature_Web_EnableAutoSimHomeUrlInProfile></CscFeature_Web_EnableAutoSimHomeUrlInProfile>
<CscFeature_Web_EnableConnectionGuideDuringAirplaneMode></CscFeature_Web_EnableConnectionGuideDuringAirplaneMode>
<CscFeature_Web_EnableDeleteAllBookmarks></CscFeature_Web_EnableDeleteAllBookmarks>
<CscFeature_Web_EnableDeleteAllOnDownloadList></CscFeature_Web_EnableDeleteAllOnDownloadList>
<CscFeature_Web_EnableDeletingTodayHistory></CscFeature_Web_EnableDeletingTodayHistory>
<CscFeature_Web_EnableDesktopSiteAsDefault></CscFeature_Web_EnableDesktopSiteAsDefault>
<CscFeature_Web_EnableDownloadedFolderInNotificationBar></CscFeature_Web_EnableDownloadedFolderInNotificationBar>
<CscFeature_Web_EnableLogStabililtyTest></CscFeature_Web_EnableLogStabililtyTest>
<CscFeature_Web_EnableMultipleApn4></CscFeature_Web_EnableMultipleApn4>
<CscFeature_Web_EnableOperatorToolbar></CscFeature_Web_EnableOperatorToolbar>
<CscFeature_Web_EnableOptionEditTextDuringFullHwr></CscFeature_Web_EnableOptionEditTextDuringFullHwr>
<CscFeature_Web_EnableOverwritingBookmark></CscFeature_Web_EnableOverwritingBookmark>
<CscFeature_Web_EnablePromptToExit></CscFeature_Web_EnablePromptToExit>
<CscFeature_Web_EnableRoamingDialog></CscFeature_Web_EnableRoamingDialog>
<CscFeature_Web_OverrideUserAgent></CscFeature_Web_OverrideUserAgent>
<CscFeature_Web_ParseXHtmlToHtml></CscFeature_Web_ParseXHtmlToHtml>
<CscFeature_Web_RemovePartialViewDuringHorizontalScroll></CscFeature_Web_RemovePartialViewDuringHorizontalScroll>
<CscFeature_Web_SetDownloadFolderNameByMimeType></CscFeature_Web_SetDownloadFolderNameByMimeType>
<CscFeature_Web_SetHomepageURL></CscFeature_Web_SetHomepageURL>
<CscFeature_Web_SetOffOverviewModeAsDefault></CscFeature_Web_SetOffOverviewModeAsDefault>
<CscFeature_Web_SetUAProfile></CscFeature_Web_SetUAProfile>
<CscFeature_Web_SetUserAgent></CscFeature_Web_SetUserAgent>
<CscFeature_Web_ShowDownloadProgressOnNotification></CscFeature_Web_ShowDownloadProgressOnNotification>
<CscFeature_Web_ShowVersionInSetting></CscFeature_Web_ShowVersionInSetting>
<CscFeature_Web_ShowWifiAPList></CscFeature_Web_ShowWifiAPList>
<CscFeature_Web_SupportDownloadedFileNameInUtf8></CscFeature_Web_SupportDownloadedFileNameInUtf8>
<CscFeature_Web_SupportDownloadSaveAs></CscFeature_Web_SupportDownloadSaveAs>
<CscFeature_Web_SupportHebrewFileName></CscFeature_Web_SupportHebrewFileName>
<CscFeature_Web_SupportOfflineStartupPage></CscFeature_Web_SupportOfflineStartupPage>
<CscFeature_Web_SupportVcfUpload></CscFeature_Web_SupportVcfUpload>
<CscFeature_Web_UseDeviceIdInHeader></CscFeature_Web_UseDeviceIdInHeader>
<CscFeature_Wifi_DefaultSsidNPwd></CscFeature_Wifi_DefaultSsidNPwd>
<CscFeature_Wifi_EapMethodSetting></CscFeature_Wifi_EapMethodSetting>
<CscFeature_Wifi_EnableMenuConnPriorityMode></CscFeature_Wifi_EnableMenuConnPriorityMode>
<CscFeature_Wifi_EnableMenuIWLAN4></CscFeature_Wifi_EnableMenuIWLAN4>
<CscFeature_Wifi_EnableShowPasswordAsDefault></CscFeature_Wifi_EnableShowPasswordAsDefault>
<CscFeature_Wifi_EnableWarningPopup4DataBatteryUsage></CscFeature_Wifi_EnableWarningPopup4DataBatteryUsage>
<CscFeature_Wifi_MaxClient4MobileAp></CscFeature_Wifi_MaxClient4MobileAp>
<CscFeature_Wifi_UseDefaultSecurityAs></CscFeature_Wifi_UseDefaultSecurityAs>
<CscFeature_Wifi_UseRandom4digitCombinationAsSSID></CscFeature_Wifi_UseRandom4digitCombinationAsSSID>
Re: [MOD] ALL CSC Codes SGSS TMOBILE JB 4.1.1
I want to add some of it on my wicked rom. I am literally new on this coding . Where. And how to start ?
Instruction on 1st Post, it will work with your ROM mentioned.
Post#2 1.01 adds...
Line # 130 - true= Messaging - "Text templates" button on {Contact} & "New message"
Code:
<CscFeature_Message_EnableTextTemplateButton>[B]true[/B]</CscFeature_Message_EnableTextTemplateButton> <!-- Orig false, true= Messaging - "Text templates" button on {Contact} & "New message" -->
Line # 134 - false= Phone - Settings - call settings - Additional settings - "call barring" menu enabled
Code:
<CscFeature_Message_DisableMenuCBMessage>[B]false[/B]</CscFeature_Message_DisableMenuCBMessage> <!-- Orig true, false= Phone - Settings - call settings - Additional settings - "call barring" menu enabled -->
Line # 141 - false= Contacts - {Contact} - "Delete" button on action bar
Code:
<CscFeature_Message_DisableDeleteButtonOnActionBar>[B]false[/B]</CscFeature_Message_DisableDeleteButtonOnActionBar> <!-- Orig true, false= Contacts - {Contact} - "Delete" button on action bar added. -->
MISC that 100% Work, but I kept them out of my ROM
Line # 103 - true= Contacts - {Contact} - settings - "Priority level" tab (Normal, High)
Code:
<CscFeature_Message_EnableMessagePriorityDuringComposing>[B]false[/B]</CscFeature_Message_EnableMessagePriorityDuringComposing> <!-- Orig false, true= Contacts - {Contact} - settings - "Priority level" tab added. (Normal, High) -->
Hi Dave!
Can you please tell me why is it that after I copy customer.xml and feature.xml into the CSC folder I don't get the HD Voice to be ON? Permissions are ok.
I do get all the other options that I have enabled in feature.xml (contacts counter, scheduled sms, keyboard sub-symbols etc.)
What should I do for the HD Voice (wb amr)?
With CSC Codes, there is no Guarantee, Some codes will Cross out others...
Many say DISABLE (with true variable) and then next line could be ENABLE (with true variable). which they contradict each other.
If that is the case, then usually the last line read will prevale.
Sometimes it takes many attempts to achieve goal. I usually work with 10-20 new code lines at once. All dealing with different areas.
So when 1 is working I know which exact line it is... Each time, I have to wipe data to see watch CSC takes effect.
As you play with different code lines, You'll like certain ones, and make them part of your USABLE CODE.
I have 40-45 code changes, that i like. I keep them, then try or test new ones at bottom to see what happens.
As it goes along, I make ROM better. Google search alot to see what others have tried or are using. I get a lot that way as well.
I managed to do it. Maybe someone else needs HD Voice, so I'm writing it here.
I always used Mobile Odin for the operations below:
I put a stock ROM (N7100XXALIJ_N7100OROALI9_ORO, 4.0.4, from Nov. 2012) that I knew it had HD Voice because it was made for Orange Romania.
Important step: after rebooting and checking HD Voice is ON (*#197328640#, [8] Wb-AMR = ON), just go in Recovery Mode. The CSC will be applied automatically when you enter Recovery. All you have to do now is reboot.
After that, I used a Deodexed ROM from HERE and put it with Mobile Odin over the previous ROM without Wipe Data. Just Dalvik Cache.
That's it. I now have the latest ROM with HD Voice enabled. I like to copy the feature.xml file to system/csc folder just to have the other cool options ON (scheduled sms, contacts counter, keyboard sub-symbols etc.)
Bro if I want to start from fresh stock rom (odin flashable) ; how to I extract files?
Can I just simply chage extension to .zip and unzip it?
there is a download on post #1.. That is the CSC files needed (it already might be on your ROM, you'd have to check that) if it's not...
I'd say Extract the ROM that you like on a PC.. then add those files from download, then re-compress to .zip file (can't be .rar or .7z). and flash rom.
or add those files & folders with File Manager once on ROM and boot into recovery wipe cache's and data to take effect. Although i don't know what permissions to set them all at (it may not be needed -sometimes after reboot, it will reset permissions if you wipe data + cache's).
all those codes mentioned after post #1, will have to be added manually to the correct. .xml file. It's not difficult to do any of this. just have to follow instructions.
phone FC's after modifying. tried 2 times carefully pasting the code. Running Frosty JB with TMO
Used root explorer to copy the csc folder and edited with notepad ++ as advised.
do you have the CSC files you can post here so I can replace and test?
Thanks!
ktmdave7 said:
system\csc\... feature.xml = (Settings) These work 100%
So I added these codes like you said copy and pasted . The problem is video can not auto focus !! blurry. I looked and look ..Am I missing something??
Rom I have
DARTHSTALKER S3 EDITION VERSION X
[UVDLJA T999 Base] [4.1.1]
I think I got it ...I went back and changed permissions... I think ...I will test now
Tested and confirmed working
Line # 38 - New Line... Phone - {Take Picture During Call} enabled
Code:
[B]true[/B]
Line # 42 - Text Message (Larger Size + Larger MMS Size {Multimedia Messaging Service})
Code:
[B]512000[/B]
[B]1280[/B]
[B]720[/B]
Line # 110 - Text Message (Larger MMS Size {Multimedia Messaging Service}, + Camcorder Values larger)
Code:
[B]5120000[/B]
[B]1223680[/B]
[B]128000[/B]
[B]60[/B]
[B]320x240[/B]
Click to expand...
Click to collapse
Download : 3 Modified Files mentioned on POST #2,4,5
added this to post #1
Keep in mind, that adding theses codes to CUSTOM ROM's depends on what ever the OP's have done. It's Not stock (if it's custom)...they could have changed something to make codes useless or less effective.
Example, if they use NON stock camera, then theses csc codes will be trying to tweak Galaxy Note 2 camera (instead of stock camera) (or AOSP camera)...I'd post info on their ROM and let OP explain that to u.
These codes work, you may want to tweak them further or change values to your liking.
ktmdave7 said:
Download : 3 Modified Files mentioned on POST #2,4,5
added this to post #1
Keep in mind, that adding theses codes to CUSTOM ROM's depends on what ever the OP's have done. It's Not stock (if it's custom)...they could have changed something to make codes useless or less effective.
Example, if they use NON stock camera, then theses csc codes will be trying to tweak Galaxy Note 2 camera (instead of stock camera) (or AOSP camera)...I'd post info on their ROM and let OP explain that to u.
These codes work, you may want to tweak them further or change values to your liking.
Click to expand...
Click to collapse
Yes I kind of figured that and pulled my ROMs CSC files .. to look. So i added those new values of code to the lines that matched. What I did notice csc codes did apply tweak to Galaxy Note 2 camera and worked only after removing stock camera..
I will continue to play and tweak and see how it works. Thanks again. :good:
I found something that might be of interest-
For those who want to use the stock messaging app, but hate the slideshow bs, this is an almost-fix:
Code:
<CscFeature_Message_DisableSlideShow4SingleTextMms>[COLOR="Red"]true[/COLOR]</CscFeature_Message_DisableSlideShow4SingleTextMms>
<CscFeature_Message_EnableMmsOnePageViewer>[COLOR="Red"]true[/COLOR]</CscFeature_Message_EnableMmsOnePageViewer>
<CscFeature_Message_GalleryView4SingleImageMms>[COLOR="Red"]image[/COLOR]</CscFeature_Message_GalleryView4SingleImageMms>
Instead of the slideshow opening up when you click on the MMS, a properties screen comes up and you can then click the picture to open in gallery as you would expect. It's not quite as ideal as it could be, but it defeats that annoying slideshow. Making one extra click is no hassle for me, so I'm happy with it.
Also,
Code:
<CscFeature_Launcher_ReplaceHotseatAreaInEditMode>[COLOR="red"]true[/COLOR]</CscFeature_Launcher_ReplaceHotseatAreaInEditMode>
locks the hotseat. Maybe this could be used in conjunction with some other code edits to center the allappsicon?
Code:
<CscFeature_Clock_ExclusiveEnablingAutoPowerSetting>[COLOR="Red"]true[/COLOR]</CscFeature_Clock_ExclusiveEnablingAutoPowerSetting>
<CscFeature_Clock_EnableAutoPowerOnOffMenu>[COLOR="Red"]true[/COLOR]</CscFeature_Clock_EnableAutoPowerOnOffMenu>
Screenshots 3 and 4 show the menu option and the page for the first line, which is supposed to turn the phone on for an alarm. I tested it and unfortunately it doesn't work. I think it has something to do with why the second line (screenshot 5) crashes when you try to open it. It's missing the autopoweronoff class from the settings file. I'm still trying to find the code, if it even exists.
Hello themers,
here is a list of "app icon paths" (sorry i can't explain it better with school english).
What i mean with "app icon paths":
You create a theme for CM/AOKP/etc. and you want to change an app's icon.
Then you need the string from where the app gets the icon graphic (and the Package (e.g. com.example.pictures))
And this is a list with "App Name, Package, Icon Path".
Sry for my bad english, i hope it's in the right section [and i hope i can help you]
(moved to Google Docs)
Link to google docs:
http://tslink.tk/iconpaths-applist
Click to expand...
Click to collapse
How to use it?
Create a new XML file at res/xml/ and name it like the package, but replace "." with "_", e.g.
Code:
com.google.googlesearch => com_google_googlesearch.xml
com.foo.bar => com_foo_bar.xml
Insert the following code:
Code:
<?xml version="1.0" encoding="utf-8"?>
<resource-redirections>
</resource-redirections>
Now add redirections between "<resource-redirections>" and "</resource-redirections>" like this:
Code:
<item name="(Icon Path)">(Location of new Icon)</item>
Complete Code (Example):
Code:
<?xml version="1.0" encoding="utf-8"?>
<resource-redirections>
<item name="mipmap/ic_launcher">@mipmap/new_icon</item>
</resource-redirections>
Cheers, Xorg.
Today i came here with new Tut
This tut includes
Status bar traffic monitor
Disable
Outgoing
Incoming
Outgoing and Incoming
Color style
Display unit
Bits per second
Bytes per second
update interval
500 ms
1000 ms
1500 ms
2000 ms
Auto hide
Inactivity threshold
Before going to tutorial First you need to have these mods (If you already had these mods then go to post #2
Color picker settings by @05Gurpreet
and Seekbar Preferences by me
Thanks to carbon rom
mod [settings/systemui]
First you need Deodexed SystemUI.apk and Settings.apk
Lets first start with SystemUI.apk
1. Decompile the SystemUI.apk
2. Open res\values\dimens.xml and add these below codes
Code:
<dimen name="net_traffic_single_text_size">12.0dip</dimen>
<dimen name="net_traffic_multi_text_size">9.0dip</dimen>
<dimen name="network_stats_text_size">10.0dip</dimen>
3. then open res\values\id.xml and these below code
Code:
<item type="id" name="networkTraffic">false</item>
4. then open res\values\status_bar.xml
look for
Code:
<include layout="@layout/system_icons" />
Add this code above it
Code:
<com.android.systemui.statusbar.policy.NetworkTraffic android:id="@+id/networkTraffic" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="false" />
5. Download this View attachment SystemUI.zip and merge them
6. Compile it and decompile then open smali/com/android/systemui.statusbar/policy/NetworkTraffic.smali
7. After replace the public ids ( by comparing one i gave in zip
8. after compared and replace... compile the app and replace in system
Now time for settings.apk
1. Decompile the settings.apk
2. open settings.apk/res/values/arrays.xml and this below code
Code:
<string-array name="show_network_traffic_state_entries">
<item>@string/show_network_traffic_disable</item>
<item>@string/show_network_traffic_up</item>
<item>@string/show_network_traffic_down</item>
<item>@string/show_network_traffic_all</item>
</string-array>
<string-array name="show_network_traffic_state_values">
<item>0</item>
<item>1</item>
<item>2</item>
<item>3</item>
</string-array>
<string-array name="show_network_traffic_unit_entries">
<item>@string/show_network_traffic_bit</item>
<item>@string/show_network_traffic_byte</item>
</string-array>
<string-array name="show_network_traffic_unit_values">
<item>0</item>
<item>1</item>
</string-array>
<string-array name="show_network_traffic_frequency_entries">
<item>@string/show_network_traffic_500</item>
<item>@string/show_network_traffic_1000</item>
<item>@string/show_network_traffic_1500</item>
<item>@string/show_network_traffic_2000</item>
</string-array>
<string-array name="show_network_traffic_frequency_values">
<item>500</item>
<item>1000</item>
<item>1500</item>
<item>2000</item>
</string-array>
3. now open settings.apk/res/values/strings.xml and add these codes
Code:
<string name="default_string">Default</string>
<string name="network_traffic_summary">Enable various network traffic options in statusbar</string>
<string name="network_traffic_title">Network traffic</string>
<string name="show_network_traffic_state">Status bar traffic monitor</string>
<string name="show_network_traffic_unit">Display unit</string>
<string name="show_network_traffic_frequency">Update interval</string>
<string name="show_network_traffic_disable">Disabled</string>
<string name="show_network_traffic_up">Outgoing</string>
<string name="show_network_traffic_down">Incoming</string>
<string name="show_network_traffic_all">Outgoing and incoming</string>
<string name="show_network_traffic_bit">Bits per second</string>
<string name="show_network_traffic_byte">Bytes per second</string>
<string name="show_network_traffic_500">500 ms</string>
<string name="show_network_traffic_1000">1000 ms</string>
<string name="show_network_traffic_1500">1500 ms</string>
<string name="show_network_traffic_2000">2000 ms</string>
<string name="network_traffic_autohide">Auto hide</string>
<string name="network_traffic_autohide_summary">Hide the traffic monitor when there is no activity</string>
<string name="network_traffic_autohide_threshold">Inactivity threshold</string>
<string name="network_traffic_color_style">Color style</string>
<string name="network_traffic_color_reset">Reset color</string>
<string name="network_traffic_color_reset_message">Reset network traffic color to default?</string>
4. now open settings.apk/res/values/attrs.xml and add these codes
Code:
<attr name="unitsLeft" format="reference|string" />
<attr name="min" format="float" />
<attr name="unitsRight" format="reference|string" />
5. Add this to any of your xml
for example i had add to my personal settings (res/xm/rstatusbar.xml)
you can add in display_settings.xml or as you wish
Code:
<PreferenceScreen android:title="@string/network_traffic_title" android:key="network_traffic_state " android:summary="@string/network_traffic_summary" android:fragment="com.android.settings.rz.NetworkTraffic" />
6. download this View attachment Settings.zip and merge to your settings
7. compile and decompile so you will get ids
8. open smali/com/android/settings/rz/NetworkTraffic.smali
9. compare the public ids to my one and replace yours
10. after that compile and replace the settings.apk
Best way to compare the Public ids go here shared by @iedafarha
Oh god finally you did it
Don't forget to mention me in your thread. If you tried my tut
venkat kamesh said:
8. compare the public ids to my one and replace yours
9. after that compile and replace the settings.apk
Oh god finally you did it
Don't forget to mention me in your thread. If you tried my tut
Click to expand...
Click to collapse
Awesome guide mate :good:, for compare the public ids , its easier to use public_id port
Try it ..
Good mode bro Tnx man
iedafarha said:
Awesome guide mate :good:, for compare the public ids , its easier to use public_id port
Try it ..
Click to expand...
Click to collapse
tnx bro you save my time alot
Nimadroid said:
tnx bro you save my time alot
Click to expand...
Click to collapse
welcome for editing xml especially for custom xml , this tools very usefull , xml validator
so save your time when recompile apk without error.
xml validato Application made with Mono 2.0, compatible with .Net Framework 2.0. It allows to load and modify xml, xsd and xsl docs and perform theirs validation, also using an embedded browser. Also, it allows to apply xsl to xml and to validate xml with xsd
Need Fix
Can you help me to fix it for me? Cause try and try but it always can't open Network Traffic menu on settings
I attach my apk
Sorry for my bad english
Thanks for help :angel:
Sloved.
I think you miss something for Public ID on NetworkTraffic.smali
For this publicID :
PHP:
<public type="integer" name="maskUp"
<public type="integer" name="maskDown"
<public type="integer" name="maskUnit"
<public type="integer" name="maskPeriod"
Keep Rockin :highfive:
iedafarha said:
welcome for editing xml especially for custom xml , this tools very usefull , xml validator
so save your time when recompile apk without error.
xml validato Application made with Mono 2.0, compatible with .Net Framework 2.0. It allows to load and modify xml, xsd and xsl docs and perform theirs validation, also using an embedded browser. Also, it allows to apply xsl to xml and to validate xml with xsd
Click to expand...
Click to collapse
ohhhh yeaaa
worked like chrm...
venkat kamesh said:
6. Compile it and decompile then open smali/com/android/systemui.statusbar/policy/NetworkTraffic.smali
Click to expand...
Click to collapse
i dont have networktraffic smali in my folder. can you mod my apk for me
uday94 said:
i dont have networktraffic smali in my folder. can you mod my apk for me
Click to expand...
Click to collapse
You don't have Networktraffic smali in ur folder because u did not follow the instructions in OP. This tutorial works perfectly.. Just try again. Read the full tutorial one time or two time then try..
venkat kamesh said:
Today i came here with new Tut
Click to expand...
Click to collapse
everything worked fine . but whenever i open network traffic option in settings it force closes.
uday94 said:
everything worked fine . but whenever i open network traffic option in settings it force closes.
Click to expand...
Click to collapse
Re check ids..
I used public id port app to change ids. There were some missing ids while editing.
uday94 said:
I used public id port app to change ids. There were some missing ids while editing.
Click to expand...
Click to collapse
There u go.. Try manual way. Find each ids and try again like me..
uday94 said:
I used public id port app to change ids. There were some missing ids while editing.
Click to expand...
Click to collapse
Download the compare_settings_systemui.zip http://forum.xda-developers.com/showthread.php?p=64516025
Decompile and check what you need (if the míssed public id is a attr= search into values/attr.xml and copy the línes you have míssed to your files and follow That way)
Who mod files for m2 2303?
djborek said:
Who mod files for m2 2303?
Click to expand...
Click to collapse
Tutorials is for learning my friend.. Just try it..
I dont know how do it.
djborek said:
I dont know how do it.
Click to expand...
Click to collapse
I made it from z5 style files
Pls send me on my PM files for 2303.
Took me a while to figure out ...
I'm on a 4G(+) network but out-of-the box the P6P did not have the correct config (unfortunately).
It was displaying 'LTE' in the status bar.
I found out how to have correct 4G or 4G+ symbols in the status bar and 4G 'settings' entry in Settings app.
But you must have root.
Code:
> adb shell
$ su
# cd /data/user_de/0/com.android.phone
# ls -l
There will be an XML file in that directory named:
Code:
carrierconfig-com.google.android.carrier-8932002100401134483-1365.xml
In your case the file name WILL BE DIFFERENT as it is dependent on the network you are on.
Then, edit the file using:
Code:
# busybox vi carrierconfig-com.google.android.carrier-8932002100401134483-1365.xml
If you don't know what 'vi' is, its a linux text editor. Google it and learn the basic commands.
The top of the file will have a line:
Code:
<bundle>
Below that line, add the following lines:
Code:
<boolean name="show_4g_for_lte_data_icon_bool" value="true" />
<boolean name="enhanced_4g_lte_on_by_default_bool" value="true" />
<boolean name="carrier_volte_available_bool" value="true" />
<boolean name="vendor_hide_volte_settng_ui" value="false" />
<boolean name="hide_lte_plus_data_icon_bool" value="false" />
What do these mean?
1) Show 4G icon instead of LTE
2) Enhanced 4G (if available) is ON
3) VoLTE is available
4) Don't hide VoLTE setting in Settings app
5) Display 4G+ icon when you'r on enhanced 4G
See my screenshot attached showing 4G+ icon in status bar and Quick Setting tile.
Other screenshot shows Settings app with 'Call using 4G' (VoLTE) and preferred network = 4G (text is in Dutch).
Note that my 4G icon is 'small' (due to another MOD which I have running; check out https://forum.xda-developers.com/t/adb-magisk-module-mod-maker.4354189/page-7#post-86000045)
Check out: https://android.googlesource.com/pl...a/android/telephony/CarrierConfigManager.java
On that page you can find additional carrierconfig settings for that XML file.
Play and enjoy.
If I'm not mistaken 4g is lte. Just another was of saying it. But nice work changing the icon.
Blade22222 said:
If I'm not mistaken 4g is lte. Just another was of saying it. But nice work changing the icon.
Click to expand...
Click to collapse
Correct but in my country we don't use the word LTE but 4G...All other phones here display 4G in the status bar...
Blade22222 said:
If I'm not mistaken 4g is lte. Just another was of saying it. But nice work changing the icon.
Click to expand...
Click to collapse
To be more precise, LTE is also named 3.9G. It's third generation.
An extension to that is called LTE-Advanced, or 4G. That's fourth generation.
There is an extension to LTE-Advanced called LTE Advanced Pro, also called 4,5G.
Some companies marketed LTE as 4G, but that's bogus. Because of that, we now also have "4G+" as the alleged NEXT progress step, even though its two steps higher.
If you want to study a bit on the matter:
LTE (telecommunication) - Wikipedia
en.wikipedia.org
Does this really enabled volte and enhanced 4g+ or is it just changing icons and settings?
Just change icons. For VoLTE you need additional properties in build.prop.
foobar66 said:
Just change icons. For VoLTE you need additional properties in build.prop.
Click to expand...
Click to collapse
Ok got it. Thanks
how to check my carrier id?
Apparently on AT&T and in the right place (in my case, at an ice hockey game in the big city), the P6P shows the misleading "5Ge" mobile data notification.
my carrier config is in data/user_de/0/com.android.phone/files
but i type busybox and it report error cannot find file. what should i do
tanipat said:
my carrier config is in data/user_de/0/com.android.phone/files
but i type busybox and it report error cannot find file. what should i do
Click to expand...
Click to collapse
Install busybox from Google playstore. Choose to install in system/bin
Hey,
Thanks for sharing.
I just wonder, after adding those lines, my lte/4g bandwidth does not pass 30Mbps
Any idea ?
foobar66 said:
Took me a while to figure out ...
I'm on a 4G(+) network but out-of-the box the P6P did not have the correct config (unfortunately).
It was displaying 'LTE' in the status bar.
I found out how to have correct 4G or 4G+ symbols in the status bar and 4G 'settings' entry in Settings app.
But you must have root.
Code:
> adb shell
$ su
# cd /data/user_de/0/com.android.phone
# ls -l
There will be an XML file in that directory named:
Code:
carrierconfig-com.google.android.carrier-8932002100401134483-1365.xml
In your case the file name WILL BE DIFFERENT as it is dependent on the network you are on.
Then, edit the file using:
Code:
# busybox vi carrierconfig-com.google.android.carrier-8932002100401134483-1365.xml
If you don't know what 'vi' is, its a linux text editor. Google it and learn the basic commands.
The top of the file will have a line:
Code:
<bundle>
Below that line, add the following lines:
Code:
<boolean name="show_4g_for_lte_data_icon_bool" value="true" />
<boolean name="enhanced_4g_lte_on_by_default_bool" value="true" />
<boolean name="carrier_volte_available_bool" value="true" />
<boolean name="vendor_hide_volte_settng_ui" value="false" />
<boolean name="hide_lte_plus_data_icon_bool" value="false" />
What do these mean?
1) Show 4G icon instead of LTE
2) Enhanced 4G (if available) is ON
3) VoLTE is available
4) Don't hide VoLTE setting in Settings app
5) Display 4G+ icon when you'r on enhanced 4G
See my screenshot attached showing 4G+ icon in status bar and Quick Setting tile.
Other screenshot shows Settings app with 'Call using 4G' (VoLTE) and preferred network = 4G (text is in Dutch).
Note that my 4G icon is 'small' (due to another MOD which I have running; check out https://forum.xda-developers.com/t/adb-magisk-module-mod-maker.4354189/page-7#post-86000045)
Check out: https://android.googlesource.com/pl...a/android/telephony/CarrierConfigManager.java
On that page you can find additional carrierconfig settings for that XML file.
Play and enjoy.
Click to expand...
Click to collapse
GOOD JOP
thehartk said:
Hey,
Thanks for sharing.
I just wonder, after adding those lines, my lte/4g bandwidth does not pass 30Mbps
Any idea ?
Click to expand...
Click to collapse
Well, I set enhanced_4g_lte_on_by_default_bool to false and I have much better results
thehartk said:
Well, I set enhanced_4g_lte_on_by_default_bool to false and I have much better results
Click to expand...
Click to collapse
In what sense?
foobar66 said:
In what sense?
Click to expand...
Click to collapse
Before I got only 30mbs, after setting to false, I get 76mbs
Oh ok ... Maybe the 4G+ signal isn't as good in your area ... I'm not an expert in these different types of networks, so not sure that might the the case ... or you are/were in a different location where the signal is stronger/weaker?
tanipat said:
my carrier config is in data/user_de/0/com.android.phone/files
but i type busybox and it report error cannot find file. what should i do
Click to expand...
Click to collapse
Oh yes ... I did not realize that some people do not have busybox ...
Alternatively, copy the file to /sdcard using:
Code:
# cp carrierconfig-XYZ.xml /sdcard/
Get file on your PC:
Code:
> adb pull /sdcard/carrierconfig-XYZ.xml
Edit the file ... hmm ... I guess on Windows you have to use Notepad (I don't use Windows).
Then push the file back onto your phone.
Code:
> adb push carrierconfig-XYZ.xml
And copy the file back on your phone:
Code:
> adb shell
$ su
# cp /sdcard/carrierconfig-XYZ.xml /data/user_de/0/com.android.phone/files/
And finally reboot.
thehartk said:
Before I got only 30mbs, after setting to false, I get 76mbs
Click to expand...
Click to collapse
112 when true , 37 when false
foobar66 said:
Oh yes ... I did not realize that some people do not have busybox ...
Alternatively, copy the file to /sdcard using:
Code:
# cp carrierconfig-XYZ.xml /sdcard/
Get file on your PC:
Code:
> adb pull /sdcard/carrierconfig-XYZ.xml
Edit the file ... hmm ... I guess on Windows you have to use Notepad (I don't use Windows).
Then push the file back onto your phone.
Code:
> adb push carrierconfig-XYZ.xml
And copy the file back on your phone:
Code:
> adb shell
$ su
# cp /sdcard/carrierconfig-XYZ.xml /data/user_de/0/com.android.phone/files/
And finally reboot.
Click to expand...
Click to collapse
Why is that , just edit it on the pixel using file explorer , no need for computer then restart