[Q] Adding CSC to custom ROM's - Samsung Galaxy W I8150

What I've Tried
Copy CSC folder to System, use this code *#272*IME* to select CSC XEU in my case, choose install and phone does a factory reset. Reset up phone and check CSC using *#1234# but CSC is still blank. How to get this to work?

+1 for this question. I hope someone help with this one.

How to change CSC
After further investigation it is the CWM recovery which stops this working you need stock recovery.
Also change SW_Configuration.xml file to reflect the csc folder
This is mine
<?xml version="1.0" encoding="UTF-8" ?>
- <SW-Configuration>
- <MobileData>
<PublicName>GT-I8150</PublicName>
<NickName />
</MobileData>
- <CustomerDataSet>
<CSCName>I8150XX</CSCName>
<CSCVersion>KL4</CSCVersion>
<NbCustomer>17</NbCustomer>
<CustomerData src="/Customer/XSK/customer.xml" />
<CustomerData src="/Customer/XEU/customer.xml" />
<CustomerData src="/Customer/XEZ/customer.xml" />
<CustomerData src="/Customer/XEO/customer.xml" />
<CustomerData src="/Customer/XEH/customer.xml" />
<CustomerData src="/Customer/XEF/customer.xml" />
<CustomerData src="/Customer/TPH/customer.xml" />
<CustomerData src="/Customer/TOP/customer.xml" />
<CustomerData src="/Customer/SMO/customer.xml" />
<CustomerData src="/Customer/SEB/customer.xml" />
<CustomerData src="/Customer/PAN/customer.xml" />
<CustomerData src="/Customer/MSR/customer.xml" />
<CustomerData src="/Customer/GBL/customer.xml" />
<CustomerData src="/Customer/CYO/customer.xml" />
<CustomerData src="/Customer/CPW/customer.xml" />
<CustomerData src="/Customer/COA/customer.xml" />
<CustomerData src="/Customer/BGL/customer.xml" />
</CustomerDataSet>
</SW-Configuration>
Hope this helps

CWM Recovery is NOT the problem!
The problem is some Custom ROM deleted the files needed to do a CSC Switch.
For instance, Cow ROM v7 (Bionic Cow 2) don't have system\CSCFiles.txt. We don't know what required files removed from other ROMs.
So this is the workaround:
Replace following files on your current Custom ROM with your STOCK ROM
system\SW_Configuration.xml
system\CSCVersion.txt
system\CSCFiles.txt
The whole system\csc folder or just the CSC you want (ie:system\csc\XSE)
(Don't forget to check and fix the files permisson)
REBOOT
Switch CSC
dial :
*#272*[your Device IMEI]#
then select the CSC you want. Your phone will reboot with the new CSC applied
WARNING!!!
Switch CSC act as Full Factory Reset, so backup you data first

Are you sure this works as I found it appeared to work but the CSC was never changed hence why I said use stock recovery.

I think he means using that list of file from your previous stock rom.

The files that are found in the /system root are copied there by the stock recovery it even prints messages to this effect on a reboot. Placing these files there because the other recovery does not do this may or may be not enough to switch CSC it rather depends what the difference in action is between the different recoveries and as I am no expert I don't know.

First of all I want to thank you for learning so much just by reading you guys.. Moving from symbian to android was hard but you made it pretty easy..
But, this issue is too much for me..
I also tried to put stock csc on cowrom v7 without any luck..
I did exactly what pmeler suggests. Copy csc folder and system\SW_Configuration.xml
system\CSCVersion.txt
system\CSCFiles.txt from stock, check all permissions (with es file manager).
Reboot , then *#272*IME# but greek language won’t appear..
My (STOCK) phone’s info:
PDA : I8150XXLA2
Phone: I8150XXKL3
CSC: I8150DBTKJ1
Android version: 2.3.6
Base band : I8150XXKL3
Kernel : 2.6.35.7-perf…
Build Num.: GINGERBREAD.XXLA2
So, with my stock rom everything working as should be (greek language/samsung keyboard,T9)…
With Cow rom V7, I finnaly manage to change csc to I8150DBTKJ1 (same as stock) but it seems that the problem is the different PDA version so no greek lang. for me yet…
Please can anybody help with this?
I mean, whats the point of having these excellent Roms like Cow rom, Kezra’s (and archo's ICS maybe tomorrow ) , if we cant use our local lang. ?
P.S. i suppose its not a problem working without SIM?
..

Did you try with stock recovery and if you use *#1234# does it show your csc has changed.

1)No, I’m using CWM. Should I return to stock recovery?
2)Yes, it shows that csc has change (same as stock: I8150DBTKJ1) but I still don’t have selection for greek after reboot…
Maybe more files needed to copy from stock rom..?

Related

[Q] is there a way to change default settings inside .apk files?

I've been MOD'ing .apk files reciently (usually changing 1-3 .xml file edits to add mod's to newer UVDLJC files...
After using Apktool to decompress .apk's
I noticed in ALL apk's res\values\bools.xml (looks like you can add lines or change things)
also while looking at Settings /data/data folders (most .xml files use example below)
<boolean name="lock_sounds" value="false" />
<boolean name="haptic_feedback" value="true" />
<boolean name="dualclock_settings" value="false" />
<boolean name="assisted_gps" value="false" />
<boolean name="allow_mock_location" value="true" />
boolean sounds similiar to bools.xml
Can settings be added there ? If not, where ?
I'd love to change many default settings (get rid of 1st prompts) and customize stuff
any advice would be great!
I do pleanty of CSC codes and get that
I've tried many times to add data\data\ folder setting changes and changed permissions (but apps always over write my custom settings)
-this sometimes works if i do it manually and set permissions, but not from flashing in recovery!

[TUT] Remove battery percentage

If you are anything like me and get annoyed by battery percentage being displayed, annoyed because you constantly check it and get a little paranoid when it gets low.... Here is a quick mod for you.
Removing Battery Percentage from Statusbar​
Decompile SystemUI.apk
Open systemui/res/layout/status_bar.xml.
Find the line :
Code:
<TextView android:layout_gravity="left|center" android:id="@id/battery_text" android: paddingLeft="4.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/status_bar_settings_settings_button" android:singleLine="true" style="@style/StatusBarNotificationText" />
Change that line to:
Code:
<TextView android:layout_gravity="left|center" android:id="@id/battery_text" android: paddingLeft="4.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/status_bar_settings_settings_button" android:singleLine="true" [B]android:visibility="gone"[/B] style="@style/StatusBarNotificationText" />
Save the file.
Compile SystemUI.apk
Copy Meta-Inf and AndroidManifest.xml from stock SystemUI.apk to your modded one.
That's it.
Then copy it to /system,set permissions to -rw-r-r.
Then copy it to /system/app.
Reboot the phone.
That is just a copy/paste from http://forum.xda-developers.com/showthread.php?t=1930377
Verified as working fine for me. About bloody time.
Also, battery icon mods are a piece of cake using Rom Toolbox.
And, don't forget to use your stock framework apk and install it properly with apktool.
(apktool if framework.apk)
There are many great howto guides for apktool if you get stuck.
Cheers

[GUIDE] Brightness Slider Guide Stock GB CM7/CM9/CM11 - Rewritten Easy To Follow

Brightness Slider Guide
For CM11 See My Guide - Here​
I have re-written the guide by @evanlocked with his permission as some people had trouble following his guide so I'll try to make it simple to follow steps
Full credit goes to him for the original guide and steps - All I have done is present it and re-write it in a different way to make it more understandable and iv also added steps for different layouts depending on what rom you are using
The original thread can be found
http://forum.xda-developers.com/showthread.php?t=2152370
1 - Download the attachment and unzip the folder
2 - Decompile your SystemUI.apk with apktool
3 - Open the downloaded attachment and copy the files within to the following locations to your decompiled SystemUI folder
Note if you dont have the folder for the smali eg lidroid just create it
smali\com\lidroid\systemui\quickpanel
BrightnessSlider$BrightnessSettingsObserver.smali
BrightnessSlider.smali
smali\com\android\systemui\statusbar
SlideBrightness$1.smali
SlideBrightness$2.smali
SlideBrightness.smali
smali\com\android\systemui\statusbar\quickpanel
BrightnessSettingsView$1.smali
BrightnessSettingsView$AutomaticObserver.smali
BrightnessSettingsView$BrightnessObserver.smali
res\drawable
brightness_seekbar.xml
res\layout
qp_brightness.xml
quickpanel_brightness_settings.xml
res\drawable-ldpi (or -mdpi and so on depending on your phone res)
brightness_bg.png
ic_brightness.png
quickpanel_brightness_icon.png
4 - Open res/values/strings.xml with notepad++
above </resources> place the following
Code:
<string name="brightness_settings_title" />
<string name="brightness_settings_automatic" />
5 - Open res/values/ids.xml with notepad++
above </resources> place the following (note cm9 dont add <item type="id" name="brightness">false</item> as its already defined)
Code:
<item type="id" name="title">false</item>
<item type="id" name="brightness">false</item>
<item type="id" name="automatic">false</item>
6 - Open res/layout/status_bar_expanded.xml
This step will vary depending on rom so I will give a few examples
Example 1 - Stock Gingerbread (deodexed)
Under
Code:
<com.android.systemui.statusbar.NotificationLinearLayout android:orientation="vertical" android:id="@id/notificationLinearLayout" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="6.0dip">
Place
Code:
<LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content">
<include layout="@layout/qp_brightness" />
</LinearLayout>
Example 2 - CM7
If you have a header you can place it under it like this (note your header name maybe different from StatusBarJellyHeaderView)
Under
Code:
<com.android.systemui.statusbar.StatusBarJellyHeaderView android:layout_width="wrap_content" android:layout_height="wrap_content" />
<TextView android:textSize="14.0sp" android:textColor="#ffffffff" android:layout_gravity="center_vertical" android:id="@id/clear_all_button" android:paddingLeft="15.0dip" android:paddingRight="15.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="4.0dip" android:layout_marginBottom="1.0dip" android:text="@string/status_bar_clear_all_button" style="StatusBar.ClearButton" />
Place
Code:
<include layout="@layout/qp_brightness" />
Or if you dont have a header or you dont want it within the header you can place it under the power widget
Under
Code:
<com.android.systemui.statusbar.powerwidget.PowerWidget android:id="@id/exp_power_stat" android:layout_width="fill_parent" android:layout_height="wrap_content" />
Place
Code:
<include layout="@layout/qp_brightness" />
Example 3 - CM9
Above
Code:
<FrameLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1.0">
Place
Code:
<LinearLayout android:orientation="horizontal" android:background="@drawable/notification_header_bg" android:layout_width="fill_parent" android:layout_height="wrap_content">
<include layout="@layout/qp_brightness" />
</LinearLayout>
<View android:background="@drawable/status_bar_hr" android:layout_width="fill_parent" android:layout_height="2.0dip" />
7 - This step is optional and is for the icon next to the brightness slider
open res/layout/qp_brightness.xml
Look at
Code:
<ImageView android:paddingLeft="3.0px" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/ic_brightness" />
This is the line for the image - change it how you like if you want to
note - to change the icon just replace ic_brightness.png that you placed in res/drawable-ldpi (or mdpi and so on) with one of your choice but make sure the filename remains ic_brightness.png
8 - Recompile and sign - if you are using cm7/9 sign the apk with a platform key using zip signer (playstore)
9 - Put in a flashable zip and flash in cwm with system mounted
credits
evanlocked
Will follow this one
EDIT:
thanks @marcussmith2626
workin perfectly
no force close or what
SystemUI FC'd on my phone..
Mind you, I am using a Sony Xperia Z running 4.3 and this thread is meant for GB and is in a Samsung forum so I could just be bringing it upon myself...lol
Ticklefish said:
SystemUI FC'd on my phone..
Mind you, I am using a Sony Xperia Z running 4.3 and this thread is meant for GB and is in a Samsung forum so I could just be bringing it upon myself...lol
Click to expand...
Click to collapse
I dont have a phone running 4.3 to test it on - iv tested on stock gb aosp gb cm7 and cm9
I do know it works on non samsung phones as someone else asked me about a bug in the brightness returning to a set level on restart but it turns out it was a bug to do with how his phone manages brightness
I dont know if the smali works on 4.3 but im sure if you had cm11 you have a brightness slider anyway if you enable in cyanogenmod settings and then swipe across the statusbar although it may not be a visable slider
it maybe just a case you need to arrange the layout for including qp_brightness in a different way to stop the force closing but Im not able to test this
you can try putting it where it is in the cm9 layout if your status_bar_expanded looks similar or just find somewhere else to place it
feel free to upload an unmodified systemui.apk and your framework-res and I will do it and you can see if it works but since iv not done it on a 4.3 phone Im not sure if it will work
marcussmith2626 said:
I dont have a phone running 4.3 to test it on - iv tested on stock gb aosp gb cm7 and cm9
I do know it works on non samsung phones as someone else asked me about a bug in the brightness returning to a set level on restart but it turns out it was a bug to do with how his phone manages brightness
I dont know if the smali works on 4.3 but im sure if you had cm11 you have a brightness slider anyway if you enable in cyanogenmod settings and then swipe across the statusbar although it may not be a visable slider
it maybe just a case you need to arrange the layout for including qp_brightness in a different way to stop the force closing but Im not able to test this
you can try putting it where it is in the cm9 layout if your status_bar_expanded looks similar or just find somewhere else to place it
feel free to upload an unmodified systemui.apk and your framework-res and I will do it and you can see if it works but since iv not done it on a 4.3 phone Im not sure if it will work
Click to expand...
Click to collapse
Oh, I've got a brightness bar already. I've pinched one from statusbargreper but it's not the best. I was hoping to use this one so that the brightness changes instantly (with the statusbargreper smali, the brightness changes when you take your finger off the screen).
I'm uploading my framework-res.apk, stock SystemUI.apk and also the SystemUI.apk I made with this mod. Just in case..
https://www.mediafire.com/?hq98l4epd1qhs23
Ticklefish said:
Oh, I've got a brightness bar already. I've pinched one from statusbargreper but it's not the best. I was hoping to use this one so that the brightness changes instantly (with the statusbargreper smali, the brightness changes when you take your finger off the screen).
I'm uploading my framework-res.apk, stock SystemUI.apk and also the SystemUI.apk I made with this mod. Just in case..
https://www.mediafire.com/?hq98l4epd1qhs23
Click to expand...
Click to collapse
iv done some test SystemUI.apk for you
in each one all iv done is move the layout of qp_brightness around so hopefully one of the layouts wont cause a force close
let me know if any work and I can add it to the guide
just rename the apks SystemUI.apk and flash them with a flashable zip - im sure you know already
http://d-h.st/Rdw
marcussmith2626 said:
iv done some test SystemUI.apk for you
in each one all iv done is move the layout of qp_brightness around so hopefully one of the layouts wont cause a force close
let me know if any work and I can add it to the guide
just rename the apks SystemUI.apk and flash them with a flashable zip - im sure you know already
http://d-h.st/Rdw
Click to expand...
Click to collapse
Thanks, I'll have to check them out tomorrow.
Sent from my C6603 using Tapatalk
Easy to follow.Thanx
Sent from my GT-S5360 using Tapatalk 2
How to fix this layout problem ?
Sent from my GT-S5360 using xda app-developers app
GSculerlor said:
How to fix this layout problem ?
Sent from my GT-S5360 using xda app-developers app
Click to expand...
Click to collapse
See san122 guide
GSculerlor said:
How to fix this layout problem ?
Sent from my GT-S5360 using xda app-developers app
Click to expand...
Click to collapse
the png on left is already explained in step 7
the colour of the slider itself is to do with your framework-res in progress_horizontal.xml
the slider icon on the bar is also to do with your framework but I dont know what png it is - I think its a .9.png somewhere - you will have to look through as the names may vary with rom
Mranggapo said:
See san122 guide
Click to expand...
Click to collapse
Thanks for an excellent guide!
marcussmith2626 said:
iv done some test SystemUI.apk for you
in each one all iv done is move the layout of qp_brightness around so hopefully one of the layouts wont cause a force close
let me know if any work and I can add it to the guide
just rename the apks SystemUI.apk and flash them with a flashable zip - im sure you know already
http://d-h.st/Rdw
Click to expand...
Click to collapse
FC's on all four, I'm afraid. I don't think this is a layout issue, it's probably a smali/4.3 thing. Which is a bugger.
Ticklefish said:
FC's on all four, I'm afraid. I don't think this is a layout issue, it's probably a smali/4.3 thing. Which is a bugger.
Click to expand...
Click to collapse
yeah it may well be - if I ever get a 4.3/4.4 device in the future I can look at it properly
Not that it's got anything with your topic to do, but I thought I'd might ask anyway.
I followed this guide to create another clear button:
http://forum.xda-developers.com/showthread.php?t=1953934
Which works good, but I would like the clear button to be aligned to the right on the row.
Is there any possibilities to that?
richard.elgh said:
Not that it's got anything with your topic to do, but I thought I'd might ask anyway.
I followed this guide to create another clear button:
http://forum.xda-developers.com/showthread.php?t=1953934
Which works good, but I would like the clear button to be aligned to the right on the row.
Is there any possibilities to that?
Click to expand...
Click to collapse
Iv used that mod in my status bar - you can try changing the gravity of the linear layout
here is link to my status bar if you want to compare
http://forum.xda-developers.com/showthread.php?p=49468255
marcussmith2626 said:
Iv used that mod in my status bar - you can try changing the gravity of the linear layout
here is link to my status bar if you want to compare
http://forum.xda-developers.com/showthread.php?p=49468255
Click to expand...
Click to collapse
It wasn't as easy as this though: android:gravity="right"
richard.elgh said:
It wasn't as easy as this though: android:gravity="right"
Click to expand...
Click to collapse
that will only work if its in its own layout else everything in that layout will go to the right
you could also try to increase its padding on one side which might shift it over
Code:
android:paddingLeft="8.0dip"
and I think theres also a next to command which will put it next to a certain @ID
for example
Code:
android:layout_toRightOf="@id/date"
which will put it to the right hand side of the date
you will just have to play around with the layout to get it how you want
marcussmith2626 said:
that will only work if its in its own layout else everything in that layout will go to the right
you could also try to increase its padding on one side which might shift it over
Code:
android:paddingLeft="8.0dip"
and I think theres also a next to command which will put it next to a certain @ID
for example
Code:
android:layout_toRightOf="@id/date"
which will put it to the right hand side of the date
you will just have to play around with the layout to get it how you want
Click to expand...
Click to collapse
This is my command:
<TextView android:textColor="@android:color/transparent" android:layout_gravity="center_vertical"" android:id="@id/clear_all_button" androidaddingLeft="15.0dip" androidaddingRight="15.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="4.0dip" android:layout_marginBottom="1.0dip" android:text="@string/status_bar_clear_all_button" style="@style/Awesome.Button" />
Just decreasing the paddingRight didn't make a change, but I can try changing the paddingLeft tomorrow.
Thanks.
richard.elgh said:
This is my command:
<TextView android:textColor="@android:color/transparent" android:layout_gravity="center_vertical"" android:id="@id/clear_all_button" androidaddingLeft="15.0dip" androidaddingRight="15.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="4.0dip" android:layout_marginBottom="1.0dip" android:text="@string/status_bar_clear_all_button" style="@style/Awesome.Button" />
Just decreasing the paddingRight didn't make a change, but I can try changing the paddingLeft tomorrow.
Thanks.
Click to expand...
Click to collapse
this is my layout for comparison - you can see what it looks like in the screenshot of the status bar thread I gave in last post or in my signature
Code:
<LinearLayout android:orientation="vertical" android:id="@id/power_and_carrier" android:background="@drawable/title_bar_portrait" android:paddingTop="3.0dip" android:paddingRight="3.0dip" android:paddingBottom="5.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content">
<com.android.systemui.statusbar.powerwidget.PowerWidget android:id="@id/exp_power_stat" android:layout_width="fill_parent" android:layout_height="wrap_content" />
<LinearLayout android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/carrier_label_layout" android:layout_width="fill_parent" android:layout_height="wrap_content">
<com.android.systemui.statusbar.StatusBarJellyHeaderView android:layout_width="wrap_content" android:layout_height="wrap_content" />
<TextView android:textSize="14.0sp" android:textColor="#ffffffff" android:layout_gravity="center_vertical" android:id="@id/clear_all_button" android:paddingLeft="15.0dip" android:paddingRight="15.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="4.0dip" android:layout_marginBottom="1.0dip" android:text="@string/status_bar_clear_all_button" style="StatusBar.ClearButton" />
<include layout="@layout/qp_brightness" />
</LinearLayout>
</LinearLayout>

Help needed! Firmware for R800 SEE

Hi guys,
I need a little help to get back my Galaxy Watch to original SEE CSC and downgrade to Tizen 4.0.0.4.
I've changed CSC of my watch from SEE to XAR few months ago to be able to update it to OneUI 1.5 but since this firmware was ****ty I'd like to take it back to original CSC and to downgrade the firmware to previous built.
Can someone please help with that?
Downgrade to older Firmware:
https://forum.xda-developers.com/smartwatch/galaxy-watch/update-gw-r800-t3936370
Best Regards
Thank you!
But is this for SEE? I see its OXA, this is like European I know.
I saw that you sad that CSE1 is with best feedback.
If I flash it will I have CSC changed?
Lots of questions, I know
But is this for SEE? I see its OXA, this is like European I know.
Click to expand...
Click to collapse
OXA is Region package name...
SM-R800 has only 1 Region package with ALL CSC/Sales Codes inside...
Also your SEE should inside...
You can check it by using Tool 7zip.. and unpack... extract csc.img...
Best Regards
adfree said:
OXA is Region package name...
SM-R800 has only 1 Region package with ALL CSC/Sales Codes inside...
Also your SEE should inside...
You can check it by using Tool 7zip.. and unpack... extract csc.img...
Best Regards
Click to expand...
Click to collapse
But, XAR wasn't inside if I recall correctly. I had to choose XAC instead to get the update quickly.
So, I am wondering how you changed the CSC to XAR in the first place. If you were able to choose it within your firmware using CSC-manager on the R800, there obviously is more than 1 firmware/package going around. And that could mean SEE isn't available in the European version.
adfree said:
OXA is Region package name...
SM-R800 has only 1 Region package with ALL CSC/Sales Codes inside...
Also your SEE should inside...
You can check it by using Tool 7zip.. and unpack... extract csc.img...
Best Regards
Click to expand...
Click to collapse
Thanks!
I will try it today.
@congusto
Use 7Zip Tool...
Unpack and extract files from csc.img...
Look into folder or search for SW_Configuration.xml
Example from DSL1...
Code:
<?xml version="1.0" encoding="UTF-8"?>
<SW-Configuration>
<MobileData>
<PublicName>SM-R800</PublicName>
<NickName />
</MobileData>
<CustomerDataSet>
<CSCName>R800OXA</CSCName>
<CSCVersion>1DSL1</CSCVersion>
<NbCustomer>71</NbCustomer>
<CustomerData src="/Customer/[COLOR="Green"][B]XAR[/B][/COLOR]/customer.xml" />
<CustomerData src="/Customer/ACR/customer.xml" />
<CustomerData src="/Customer/AFR/customer.xml" />
<CustomerData src="/Customer/ARO/customer.xml" />
<CustomerData src="/Customer/ATO/customer.xml" />
<CustomerData src="/Customer/AUT/customer.xml" />
<CustomerData src="/Customer/BGL/customer.xml" />
<CustomerData src="/Customer/BRI/customer.xml" />
<CustomerData src="/Customer/BTU/customer.xml" />
<CustomerData src="/Customer/BVO/customer.xml" />
<CustomerData src="/Customer/CAC/customer.xml" />
<CustomerData src="/Customer/CAM/customer.xml" />
<CustomerData src="/Customer/CHC/customer.xml" />
<CustomerData src="/Customer/CHO/customer.xml" />
<CustomerData src="/Customer/COO/customer.xml" />
<CustomerData src="/Customer/DBT/customer.xml" />
<CustomerData src="/Customer/ECT/customer.xml" />
<CustomerData src="/Customer/EGY/customer.xml" />
<CustomerData src="/Customer/EUR/customer.xml" />
<CustomerData src="/Customer/ILO/customer.xml" />
<CustomerData src="/Customer/INU/customer.xml" />
<CustomerData src="/Customer/ITV/customer.xml" />
<CustomerData src="/Customer/KOO/customer.xml" />
<CustomerData src="/Customer/KSA/customer.xml" />
<CustomerData src="/Customer/LUX/customer.xml" />
<CustomerData src="/Customer/LYS/customer.xml" />
<CustomerData src="/Customer/MID/customer.xml" />
<CustomerData src="/Customer/MWD/customer.xml" />
<CustomerData src="/Customer/MXO/customer.xml" />
<CustomerData src="/Customer/MYM/customer.xml" />
<CustomerData src="/Customer/NEE/customer.xml" />
<CustomerData src="/Customer/NPL/customer.xml" />
<CustomerData src="/Customer/PAK/customer.xml" />
<CustomerData src="/Customer/PEO/customer.xml" />
<CustomerData src="/Customer/PHE/customer.xml" />
<CustomerData src="/Customer/PHN/customer.xml" />
<CustomerData src="/Customer/ROM/customer.xml" />
<CustomerData src="/Customer/SEB/customer.xml" />
<CustomerData src="/Customer/[COLOR="Green"][B]SEE[/B][/COLOR]/customer.xml" />
<CustomerData src="/Customer/SEK/customer.xml" />
<CustomerData src="/Customer/SER/customer.xml" />
<CustomerData src="/Customer/SKZ/customer.xml" />
<CustomerData src="/Customer/SLK/customer.xml" />
<CustomerData src="/Customer/TGY/customer.xml" />
<CustomerData src="/Customer/THO/customer.xml" />
<CustomerData src="/Customer/THR/customer.xml" />
<CustomerData src="/Customer/TMC/customer.xml" />
<CustomerData src="/Customer/TPA/customer.xml" />
<CustomerData src="/Customer/TPH/customer.xml" />
<CustomerData src="/Customer/TTT/customer.xml" />
<CustomerData src="/Customer/TUN/customer.xml" />
<CustomerData src="/Customer/TUR/customer.xml" />
<CustomerData src="/Customer/UPO/customer.xml" />
<CustomerData src="/Customer/UYO/customer.xml" />
<CustomerData src="/Customer/XAC/customer.xml" />
<CustomerData src="/Customer/XEF/customer.xml" />
<CustomerData src="/Customer/XEH/customer.xml" />
<CustomerData src="/Customer/XEO/customer.xml" />
<CustomerData src="/Customer/XEZ/customer.xml" />
<CustomerData src="/Customer/XFA/customer.xml" />
<CustomerData src="/Customer/XJP/customer.xml" />
<CustomerData src="/Customer/XME/customer.xml" />
<CustomerData src="/Customer/XNZ/customer.xml" />
<CustomerData src="/Customer/XSA/customer.xml" />
<CustomerData src="/Customer/XSE/customer.xml" />
<CustomerData src="/Customer/XSG/customer.xml" />
<CustomerData src="/Customer/XSK/customer.xml" />
<CustomerData src="/Customer/XSP/customer.xml" />
<CustomerData src="/Customer/XTC/customer.xml" />
<CustomerData src="/Customer/XXV/customer.xml" />
<CustomerData src="/Customer/ZTO/customer.xml" />
</CustomerDataSet>
</SW-Configuration>
Btw you can do this also via App on Watch...
https://forum.xda-developers.com/showpost.php?p=80072694&postcount=786
With this app you can click click to path:
Code:
will add later... forgotten for now... /opt/system/csc or something like this...
Best Regards
@adfree
Ah, I probably searched alphabetically, if XAR is the first in the list that is sorted alphabetically for all others, it is easily missed.
Thanks for digging this up.
@Zoran81
If it was not clear yet: flashing won't change your CSC. You have to change it using csc-manager after downgrading, the same way you changed the CSC to XAR before.
So I successfully downgraded SW to OneUI 1.0 and now I'm stuck on f.cking CSC change via SDB.
After I send sdb shell I'm keep getting
error: target not found
failed environment shell, so it will retry shell command.
error: target not found
What the f.ck I'm doing wrong?!?
Try again after looking into this post...
https://forum.xda-developers.com/showpost.php?p=74585286&postcount=330
Try to read... maybe 2 times or maybe more...
Tiny hint...
sdb connect IPaddress
Best Regards
adfree said:
Try again after looking into this post...
https://forum.xda-developers.com/showpost.php?p=74585286&postcount=330
Try to read... maybe 2 times or maybe more...
Tiny hint...
sdb connect IPaddress
Best Regards
Click to expand...
Click to collapse
somehow I make it to work..how? I really don't know
thanks for assistance
Zoran81 said:
So I successfully downgraded SW to OneUI 1.0 and now I'm stuck on f.cking CSC change via SDB.
After I send sdb shell I'm keep getting
error: target not found
failed environment shell, so it will retry shell command.
error: target not found
What the f.ck I'm doing wrong?!?
Click to expand...
Click to collapse
Things you can check/try:
Make sure developer mode is on on your watch (tap 5x on software version in the About Watch menu.
Is your PC connected to the same network as your watch?
Try rebooting your watch after switching debugging mode on.
Did you recheck the IP address of your watch? It can change when it reconnects after a reboot/reset.
Some say you have to turn of Bluetooth on your watch.
Set Wifi connection on your watch to always on.
I usually remove the network cable when flashing with NetOdin. For working with sdb you need to put it back in.
Switch off your firewall and try again. If you want to keep it on (safer), check if sdb has only one permission line. Best is to remove all permissions for sdb and grant sdb permission anew when you have another attempt.
I have best results with the 32bit version of sdb (although my Windows is 64bit). Some claim they have better results with the 64bit version. So after removing the permissions for sdb you may want to try the other version.
Before giving the sdb connect command turn off your watch screen. After the sdb connect command, turn the screen on with the home button. It helped some to get the RSA dialog on their watch.
For some odd reason, try giving the command "sdb connect IPaddress:26099" before giving the command "sdb connect IPaddress:26101" . I don't understand why that helps but it did the trick for me a few times. It can also be a coincidence. Sometimes you have to keep trying.
If nothing works.... try another PC/Laptop.
Good luck.

Android 12

it seems that android 12 has appeared S20 FE 5G
who has the courage to try it !?
Download Galaxy S20 Fan Edition 5G SM-G781B (AUT) G781BXXU4DUL9 in Samfw - Samsung firmware download
Galaxy S20 Fan Edition 5G SM-G781B (AUT - Switzerland) G781BXXU4DUL9 S(Android 12) samsung firmware download all model, lastest, fast update, completely free and fast speed in Samfw.com ✅
samfw.com
Flashed the Swiss rom using home-csc and kept all my data and csc version using Odin. Running fine so far. So first impression is ok.
As always: flash at your own risk.
Noki said:
Flashed the Swiss rom using home-csc and kept all my data and csc version using Odin. Running fine so far. So first impression is ok.
As always: flash at your own risk.
Click to expand...
Click to collapse
What s20fe 5g model are you on?
SM-G781B
CSC PHN
I'm also running it since yesterday. I did a clean flash with repartition via ODIN tool.
So far so good. Bit laggy after first reset/during setup, but after that works flawlessly
Changes to the 11:
Notify Update
doc.samsungmobile.com
The first Switzerland rom is also multi CSC:
<CustomerDataSet>
<CSCName>G781BOXM</CSCName>
<CSCVersion>4DUL7</CSCVersion>
<NbCustomer>48</NbCustomer>
<CustomerData src="/Customer/3IE/customer.xml" />
<CustomerData src="/Customer/AMO/customer.xml" />
<CustomerData src="/Customer/ATL/customer.xml" />
<CustomerData src="/Customer/ATO/customer.xml" />
<CustomerData src="/Customer/AUT/customer.xml" />
<CustomerData src="/Customer/BOG/customer.xml" />
<CustomerData src="/Customer/BTB/customer.xml" />
<CustomerData src="/Customer/BTE/customer.xml" />
<CustomerData src="/Customer/BTU/customer.xml" />
<CustomerData src="/Customer/CNX/customer.xml" />
<CustomerData src="/Customer/CPW/customer.xml" />
<CustomerData src="/Customer/DBT/customer.xml" />
<CustomerData src="/Customer/EUR/customer.xml" />
<CustomerData src="/Customer/EUX/customer.xml" />
<CustomerData src="/Customer/EUY/customer.xml" />
<CustomerData src="/Customer/EVR/customer.xml" />
<CustomerData src="/Customer/FTM/customer.xml" />
<CustomerData src="/Customer/H3G/customer.xml" />
<CustomerData src="/Customer/ITV/customer.xml" />
<CustomerData src="/Customer/LUX/customer.xml" />
<CustomerData src="/Customer/MEO/customer.xml" />
<CustomerData src="/Customer/MET/customer.xml" />
<CustomerData src="/Customer/MOT/customer.xml" />
<CustomerData src="/Customer/NEE/customer.xml" />
<CustomerData src="/Customer/O2C/customer.xml" />
<CustomerData src="/Customer/O2U/customer.xml" />
<CustomerData src="/Customer/OPV/customer.xml" />
<CustomerData src="/Customer/ORO/customer.xml" />
<CustomerData src="/Customer/PHE/customer.xml" />
<CustomerData src="/Customer/PHN/customer.xml" />
<CustomerData src="/Customer/PLS/customer.xml" />
<CustomerData src="/Customer/PRT/customer.xml" />
<CustomerData src="/Customer/ROM/customer.xml" />
<CustomerData src="/Customer/SEB/customer.xml" />
<CustomerData src="/Customer/SFR/customer.xml" />
<CustomerData src="/Customer/SIO/customer.xml" />
<CustomerData src="/Customer/SWC/customer.xml" />
<CustomerData src="/Customer/TCL/customer.xml" />
<CustomerData src="/Customer/TPH/customer.xml" />
<CustomerData src="/Customer/VD2/customer.xml" />
<CustomerData src="/Customer/VDF/customer.xml" />
<CustomerData src="/Customer/VDI/customer.xml" />
<CustomerData src="/Customer/VOD/customer.xml" />
<CustomerData src="/Customer/XEC/customer.xml" />
<CustomerData src="/Customer/XEF/customer.xml" />
<CustomerData src="/Customer/XEO/customer.xml" />
<CustomerData src="/Customer/XEZ/customer.xml" />
<CustomerData src="/Customer/BRI/customer.xml" />
</CustomerDataSet>
The wifi issue has been fixed on this update?
What do you mean by wifi issue? I did not had any on 11,
mar10o said:
What do you mean by wifi issue? I did not had any on 11,
Click to expand...
Click to collapse
Consider yourself lucky then, I have the same problems related on the following thread on my S20 FE 4G Snapdragon version.
S20FE 5GHz WiFi speed issues
Hi, I'm trying to resolve my WiFi problems on Samsung S20 FE 5G. When I download large files (games, updates, big apps) WiFi speed drops from 300 Mbps (that's my provider speed) to < 10 Mbps or even completely stops. It happens after a few...
forum.xda-developers.com
mar10o said:
I'm also running it since yesterday. I did a clean flash with repartition via ODIN tool.
So far so good. Bit laggy after first reset/during setup, but after that works flawlessly
Changes to the 11:
Notify Update
doc.samsungmobile.com
The first Switzerland rom is also multi CSC:
<CustomerDataSet>
<CSCName>G781BOXM</CSCName>
<CSCVersion>4DUL7</CSCVersion>
<NbCustomer>48</NbCustomer>
<CustomerData src="/Customer/3IE/customer.xml" />
<CustomerData src="/Customer/AMO/customer.xml" />
<CustomerData src="/Customer/ATL/customer.xml" />
<CustomerData src="/Customer/ATO/customer.xml" />
<CustomerData src="/Customer/AUT/customer.xml" />
<CustomerData src="/Customer/BOG/customer.xml" />
<CustomerData src="/Customer/BTB/customer.xml" />
<CustomerData src="/Customer/BTE/customer.xml" />
<CustomerData src="/Customer/BTU/customer.xml" />
<CustomerData src="/Customer/CNX/customer.xml" />
<CustomerData src="/Customer/CPW/customer.xml" />
<CustomerData src="/Customer/DBT/customer.xml" />
<CustomerData src="/Customer/EUR/customer.xml" />
<CustomerData src="/Customer/EUX/customer.xml" />
<CustomerData src="/Customer/EUY/customer.xml" />
<CustomerData src="/Customer/EVR/customer.xml" />
<CustomerData src="/Customer/FTM/customer.xml" />
<CustomerData src="/Customer/H3G/customer.xml" />
<CustomerData src="/Customer/ITV/customer.xml" />
<CustomerData src="/Customer/LUX/customer.xml" />
<CustomerData src="/Customer/MEO/customer.xml" />
<CustomerData src="/Customer/MET/customer.xml" />
<CustomerData src="/Customer/MOT/customer.xml" />
<CustomerData src="/Customer/NEE/customer.xml" />
<CustomerData src="/Customer/O2C/customer.xml" />
<CustomerData src="/Customer/O2U/customer.xml" />
<CustomerData src="/Customer/OPV/customer.xml" />
<CustomerData src="/Customer/ORO/customer.xml" />
<CustomerData src="/Customer/PHE/customer.xml" />
<CustomerData src="/Customer/PHN/customer.xml" />
<CustomerData src="/Customer/PLS/customer.xml" />
<CustomerData src="/Customer/PRT/customer.xml" />
<CustomerData src="/Customer/ROM/customer.xml" />
<CustomerData src="/Customer/SEB/customer.xml" />
<CustomerData src="/Customer/SFR/customer.xml" />
<CustomerData src="/Customer/SIO/customer.xml" />
<CustomerData src="/Customer/SWC/customer.xml" />
<CustomerData src="/Customer/TCL/customer.xml" />
<CustomerData src="/Customer/TPH/customer.xml" />
<CustomerData src="/Customer/VD2/customer.xml" />
<CustomerData src="/Customer/VDF/customer.xml" />
<CustomerData src="/Customer/VDI/customer.xml" />
<CustomerData src="/Customer/VOD/customer.xml" />
<CustomerData src="/Customer/XEC/customer.xml" />
<CustomerData src="/Customer/XEF/customer.xml" />
<CustomerData src="/Customer/XEO/customer.xml" />
<CustomerData src="/Customer/XEZ/customer.xml" />
<CustomerData src="/Customer/BRI/customer.xml" />
</CustomerDataSet>
Click to expand...
Click to collapse
can I flash this firmware via Odin for XSG csc? model SM-G781B?
Can someone please post some screenshots? Also, do we have google feed now
Is there one for 4g snap version?
@sauliiin only 5G for now.
@cj ryderzz there is no Google feed, only Samsung Free. GUI looks almost the same as on Android 11
@kk12002 you may try it, but OTA updates may stop working.
Any update for indian users???
Odin flash only Bootloader, Application Processor and Core Processor except Software Customization everything works fine.
{
"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"
}
cj ryderzz said:
Can someone please post some screenshots? Also, do we have google feed now
Click to expand...
Click to collapse
No Google discovery.
ParotZ said:
Odin flash only Bootloader, Application Processor and Core Processor except Software Customization everything works fine.
View attachment 5498839
Click to expand...
Click to collapse
Your method works! My Singapore model working fine with retaining local Samsung Pay services, thank you!
GuilhermeXDA said:
Consider yourself lucky then, I have the same problems related on the following thread on my S20 FE 4G Snapdragon version.
S20FE 5GHz WiFi speed issues
Hi, I'm trying to resolve my WiFi problems on Samsung S20 FE 5G. When I download large files (games, updates, big apps) WiFi speed drops from 300 Mbps (that's my provider speed) to < 10 Mbps or even completely stops. It happens after a few...
forum.xda-developers.com
Click to expand...
Click to collapse
Unfortunately the issue still persists after being updated to OneUI 4.
Keep in mind I just discover this at day 1.
Its now available for the SM-G780G - Snapdragon variant 4G. I'm in Germany and flashed the Malaysia Firmware just now. In Odin I checked BL,AP,CP.
So far it works fine.
ParotZ said:
Odin flash only Bootloader, Application Processor and Core Processor except Software Customization everything works fine.
View attachment 5498839
Click to expand...
Click to collapse
tip of the year so far right here
Just flashed SM-G780G - Snapdragon variant 4G (Telenor Serbia) with Malaysia (XME) ...

Categories

Resources