Hi, does anyone know substitute for a this code cose I search all and thay say that works but with sm-g355hn won't. I want to change some WiMAX and Data Profile settings. Help appreciateed.
Y300-0100 said:
Hi, does anyone know substitute for a this code cose I search all and thay say that works but with sm-g355hn won't. I want to change some WiMAX and Data Profile settings. Help appreciateed.
Click to expand...
Click to collapse
I don't think this works on our phone.
As far as I know only this special fncts works ( accept imei & other ) :
Code:
*#0*# - LCD Test
*#0228# - BatteryStatus
*#0283# - ServiceMode
*#0011# - ServiceMode
*#9900# - SysDump
Regards
use ##3282 - field test menu to change Network Type, i.e. lock on 2G,3G,4G, or automatic.
StratOS_HTC said:
I don't think this works on our phone.
As far as I know only this special fncts works ( accept imei & other ) :
Code:
*#0*# - LCD Test
*#0228# - BatteryStatus
*#0283# - ServiceMode
*#0011# - ServiceMode
*#9900# - SysDump
Regards
use ##3282 - field test menu to change Network Type, i.e. lock on 2G,3G,4G, or automatic.
Click to expand...
Click to collapse
That's what I need but 3282 does nothing...
I got my MSL code (6 digits ) but what use of it if I can't access manu to apply settings.
Y300-0100 said:
That's what I need but 3282 does nothing...
I got my MSL code (6 digits ) but what use of it if I can't access manu to apply settings.
Click to expand...
Click to collapse
How did U get MSL ?
There are talks that SM models need HiddenMenu.apk
Some more :
The *#1234# lounct su apk ant shows AP,CP,CSC and model info
*#1111# FTA SW Version
*#2222# FTA HW Version
*#06# - IMEI
StratOS_HTC said:
How did U get MSL ?
There are talks that SM models need HiddenMenu.apk
Click to expand...
Click to collapse
I used Meid converter but catch is to type imei without 06
that's why samsung probably disabled that part of menu. So we probably need Woking app.
This is menu that I need to access.
Iothiddenmenu
Y300-0100 said:
This is menu that I need to access.
Click to expand...
Click to collapse
Code:
su -c am broadcast -a android.provider.Telephony.SECRET_CODE -d android_secret_code://HIDDENMENUENABLE
su -c am broadcast -a android.provider.Telephony.SECRET_CODE -d android_secret_code://IOTHIDDENMENU
Guess our phone don't support this one
[email protected]:/ # su -c am broadcast -a android.provider.Telephony.SECRET_CODE -d android_secret_code://HIDDENMENUENABLE
.provider.Telephony.SECRET_CODE -d android_secret_code://HIDDENMENUENABLE
Broadcasting: Intent { act=android.provider.Telephony.SECRET_CODE dat=android_se
cret_code://HIDDENMENUENABLE }
Broadcast completed: result=0
[email protected]:/ #
Click to expand...
Click to collapse
[email protected]:/ # su -c am broadcast -a android.provider.Telephony.SECRET_CODE -d android_secret_code://IOTHIDDENMENU
.provider.Telephony.SECRET_CODE -d android_secret_code://IOTHIDDENMENU
Broadcasting: Intent { act=android.provider.Telephony.SECRET_CODE dat=android_se
cret_code://IOTHIDDENMENU }
Broadcast completed: result=0
[email protected]:/ #
Click to expand...
Click to collapse
Like 'IOTHIDDENMENU' :
Check this out : http://forum.xda-developers.com/showpost.php?p=29797477&postcount=1
Find that last night but no luck..
MSL
Y300-0100 said:
I used Meid converter but catch is to type imei without 06
that's why samsung probably disabled that part of menu. So we probably need Woking app.
Click to expand...
Click to collapse
Weird - I found MSL in EFS/imei/msl_code
Related
Need help guys...i tried to enter this code....
su
setprop fw.max_users 8
pm create-user guest
Then it reboot...after that i go to settings and check if the users option is present on device tab them i enter now enter this code to make it permanent
su
mount -o remount,rw /system
echo fw.max_users 8 build.prop
exit
exit
Reboot
After it reboot i go to settings and i noticed that the users option is gone...so what seems to be the problem in my code???
Xposed Module
vaynefox said:
Need help guys...i tried to enter this code....
su
setprop fw.max_users 8
pm create-user guest
Then it reboot...after that i go to settings and check if the users option is present on device tab them i enter now enter this code to make it permanent
su
mount -o remount,rw /system
echo fw.max_users 8 build.prop
exit
exit
Reboot
After it reboot i go to settings and i noticed that the users option is gone...so what seems to be the problem in my code???
Click to expand...
Click to collapse
There is a xposed module called Multi User which enables users in settings.
http://forum.xda-developers.com/xposed/modules/xposed-multiple-users-phone-t2676516
This requires to be rooted, AOSP rom (4.2+) and xposed installed.
Hit that Thanks button if it helped!
Hi guys,
I'd like to be able to change the mac address of my device to be able to use airport Wifi while on transit.
Here is what I do using tasker
1) Turn off wifi
2) Launch the shell script below
Code:
array=( 1 2 3 4 5 6 7 8 9 0 A B C D E F )
newmac=${array[$RANDOM%16]}${array[$RANDOM%16]}${array[$RANDOM%16]}${array[$RANDOM%16]}${array[$RANDOM%16]}${array[$RANDOM%16]}
chattr -i /persist/wlan_mac.bin
sed -i "1 s/=.*/=64A2F9$newmac/" /persist/wlan_mac.bin
chattr +i /persist/wlan_mac.bin
3) Turn on wifi
But it doesn't work
/persist/wlan_mac.bin is successfully modified by the script but real mac address isn't.
Need your help!
chattr binary is not present on Oxygen Os...
So file gets overwritten while setting airplane mode on and off
It works!
Installed busybox magisk module (which includes chattr binary) and replaced chattr by busybox chattr!
Also modified script by adding command line toggle for airplane mode.
Code:
#!/system/bin/sh
array=( 1 2 3 4 5 6 7 8 9 0 A B C D E F )
newmac=${array[$RANDOM%16]}${array[$RANDOM%16]}${array[$RANDOM%16]}${array[$RANDOM%16]}${array[$RANDOM%16]}${array[$RANDOM%16]}
busybox chattr -i /persist/wlan_mac.bin
sed -i "1 s/=.*/=64A2F9$newmac/" /persist/wlan_mac.bin
busybox chattr +i /persist/wlan_mac.bin
settings put global airplane_mode_on 1; am broadcast -a android.intent.action.AIRPLANE_MODE --ez state true
settings put global airplane_mode_on 0; am broadcast -a android.intent.action.AIRPLANE_MODE --ez state false
i can't thank you enough! i was looking for a way to hard change my mac and none of the rooted apps were working for me. just stumbled upon this thread and it's working good.
Can you guys guide me on How to run That script .. I've already installed BusyBox ..
Thank you so much
Dimitrimem said:
Can you guys guide me on How to run That script .. I've already installed BusyBox ..
Thank you so much
Click to expand...
Click to collapse
Save this into text file, upload to internal memory, name and extension is relevant (mac.sh for example, load to internal memory.
In terminal emulator:
Open directory with file:
cd /sdcard
Add rights to execute:
chmod +x mac.sh
Run:
su sh mac.sh
OnePlus 6 @ Tapatalk
I have BusyBox installed .. how do I replace chattr with the BusyBox one or that's done by default .. I
I managed to save the script and run it from terminal emulator .. however the Mac Address don't changes
Hey there,
Looks like this method doesn't work anymore with pie.
Modifying /persist/wlan_mac.bin has no effect but managed to change mac temporarily (until next reboot) by using the commands below:
Code:
svc wifi disable
ip link set wlan0 addr 01:02:03:04:05:06
svc wifi enable
Modifying hostname method has also changed. It doesn't survive reboot either
Before PIE:
Code:
resetprop -v ro.product.name "newHostname"
#Toggle airplane mode
settings put global airplane_mode_on 1; am broadcast -a android.intent.action.AIRPLANE_MODE --ez state true
settings put global airplane_mode_on 0; am broadcast -a android.intent.action.AIRPLANE_MODE --ez state false
After PIE: net.hostname gets its value from system settings after toggling airplane mode on/off
Code:
settings put system oem_oneplus_devicename newHostname
#Toggle airplane mode
settings put global airplane_mode_on 1; am broadcast -a android.intent.action.AIRPLANE_MODE --ez state true
settings put global airplane_mode_on 0; am broadcast -a android.intent.action.AIRPLANE_MODE --ez state false
[/CODE]
Have you guys succeeded in modifying these permanently?
Karboush the first code actaully worked for me so thnak you .. i wish there was a script for this that actually can randomly change the macaddress .. would be great
thank you <3
Karboush said:
Hey there,
Looks like this method doesn't work anymore with pie.
Modifying /persist/wlan_mac.bin has no effect but managed to change mac temporarily (until next reboot) by using the commands below:
Code:
svc wifi disable
ip link set wlan0 addr 01:02:03:04:05:06
svc wifi enable
Modifying hostname method has also changed. It doesn't survive reboot either
Before PIE:
Code:
resetprop -v ro.product.name "newHostname"
#Toggle airplane mode
settings put global airplane_mode_on 1; am broadcast -a android.intent.action.AIRPLANE_MODE --ez state true
settings put global airplane_mode_on 0; am broadcast -a android.intent.action.AIRPLANE_MODE --ez state false
After PIE: net.hostname gets its value from system settings after toggling airplane mode on/off
Code:
settings put system oem_oneplus_devicename newHostname
#Toggle airplane mode
settings put global airplane_mode_on 1; am broadcast -a android.intent.action.AIRPLANE_MODE --ez state true
settings put global airplane_mode_on 0; am broadcast -a android.intent.action.AIRPLANE_MODE --ez state false
[/CODE]
Have you guys succeeded in modifying these permanently?
Click to expand...
Click to collapse
Time to revive a dead thread. The new method using
Code:
svc wifi disable
ip link set wlan0 addr 01:02:03:04:05:06
svc wifi disable
Doesn't seem to work anymore. After I set the new Mac address I get an error saying
"RTNETLINK answers: Device or resources busy"
Does anyone know a fix for this or if I'm doing anything wrong? Thanks.
From what I understand, Pie uses a random mac address for each specific wifi connection and no longer reveals your true id.
Android Pie by default doesn't change your Mac address when connecting to wifis. The option can only be turned on by editing the system config.xml file, which idk how to do. h ttps://source.android.com/devices/tech/connect/wifi-mac-randomization
Anyone know how to edit it and turn on the option?
Well, after a bit of experimenting I found out a solution to this, bit some issues.
When you want to change your mac address put the phone into airplane mode. The. Put the code
Code:
ip link set wlan0 addr XX:XX:XX:XX:XX:XX
There are some specifications though. Any letters put into it, hexidecimal or not, will make it invalid. And any zeros at the beginning of a pair will also make it invalid, so 01:02:03:04:05:06 would be invalid but 10:20:30:40:50:60 would be valid. The parsing must have changed. Anyone got any solutions to get letters in?
I'm using macchanger and my phone is rooted with magisk .. that easy .. all I had to do is change from iproute to airroute for the " method" works like a charm ?
Dimitrimem said:
I'm using macchanger and my phone is rooted with magisk .. that easy .. all I had to do is change from iproute to airroute for the " method" works like a charm ?
Click to expand...
Click to collapse
Did you have to do anything in particular to make this work? I am on 9.0.4 rooted with Magisk, using this app with mode set to airtable and it does not seem to work. The app is confirmed granted root access per Magisk.
The only thing I'm doing is set airplane mode and wifi enabled .. when I run the app the phone comes out of airplane mode .. not sure I see the "airtable" feature on this app ... Anyways wish you luck
Dimitrimem said:
The only thing I'm doing is set airplane mode and wifi enabled .. when I run the app the phone comes out of airplane mode .. not sure I see the "airtable" feature on this app ... Anyways wish you luck
Click to expand...
Click to collapse
I am using the latest BETA if that makes a difference
after updating to pie I can't change my Mac address anymore. tried it a few ways via terminal and tried at least 3 different apps.
it seems that as soon as I do ifconfig wlan up, or disable airplane mode, it gets reverted back.
if I do ifconfig wlan0 he ether 00:11:22:33:44:55 while the interface is up, it fails to authenticate me to the network
I may have to revert to Oreo
EDIT:
so after reverting to oreo, i still was unable to change the mac using the app that worked before. I found the values for the mac adderss in the file in /persist/wlan_mac.bin.
now, i tried changing these values but they kept getting re-written when i flipped Airplane mode off. so added the immutable flag to it after editing it. now the change is persistent accross boot
so after editing the file, do
chattr +i /persist/wlan_mac.bin
Click to expand...
Click to collapse
and whatever values you have for the interfaces should stick after you boot
i wonder if this would've worked if i tried it in android 9.... too lazy to factory reset again to try it out
keep in mind i was working with a oneplus 3t.
I'll be showing you how to get dt2w(double tap to wake) working in any rom
Install terminal emulator app from play store and then run these commands
su
ls /proc
cat /proc/tp_wakeup_gesture
echo 1 > /proc/tp_wakeup_gesture
NOTE:After a reboot it won't work until you enter the commands again
NOTE: Only works on goodix panels(to check if you have goodix panel install device info hw app and check if touchscreen says goodix-ts that means that you have a goodix panel)
Credits:33bca/Offain
Not working getting permission denied so probably do need root.
Thank you! Works for me. Can it be implemented as Magisk module?
worked for me too
but; as root,
also
Code:
mad.duck.ffs:/ # echo 1> /proc/tp_wakeup_gesture
mad.duck.ffs:/ # cat /proc/tp_wakeup_gesture
0
while
Code:
mad.duck.ffs:/ # echo "1"> /proc/tp_wakeup_gesture
mad.duck.ffs:/ # cat /proc/tp_wakeup_gesture
1
then just added it in "boot shell" app to be run every time my device started,
works perfectly, thanks.
czkb said:
worked for me too
but; as root,
also
Code:
mad.duck.ffs:/ # echo 1> /proc/tp_wakeup_gesture
mad.duck.ffs:/ # cat /proc/tp_wakeup_gesture
0
while
Code:
mad.duck.ffs:/ # echo "1"> /proc/tp_wakeup_gesture
mad.duck.ffs:/ # cat /proc/tp_wakeup_gesture
1
then just added it in "boot shell" app to be run every time my device started,
works perfectly, thanks.
Click to expand...
Click to collapse
Thanks! Can you guide step by step how to add commands in boot shell?
gkornaks said:
Thanks! Can you guide step by step how to add commands in boot shell?
Click to expand...
Click to collapse
click on the "+"
add command
give it a name (first line)
add the command (second line)
check run on boot
save and you're good to go.
i dont have 10 post yet so i cant post pics, but that's pretty much it.
czkb said:
click on the "+"
add command
give it a name (first line)
add the command (second line)
check run on boot
save and you're good to go.
i dont have 10 post yet so i cant post pics, but that's pretty much it.
Click to expand...
Click to collapse
Thank you! The command which starts with echo, right?
czkb said:
worked for me too
but; as root,
also
Code:
mad.duck.ffs:/ # echo 1> /proc/tp_wakeup_gesture
mad.duck.ffs:/ # cat /proc/tp_wakeup_gesture
0
while
Code:
mad.duck.ffs:/ # echo "1"> /proc/tp_wakeup_gesture
mad.duck.ffs:/ # cat /proc/tp_wakeup_gesture
1
then just added it in "boot shell" app to be run every time my device started,
works perfectly, thanks.
Click to expand...
Click to collapse
So, only work with root?
gkornaks said:
Thank you! The command which starts with echo, right?
Click to expand...
Click to collapse
yep
Code:
echo "1"> /proc/tp_wakeup_gesture
Batmany said:
So, only work with root?
Click to expand...
Click to collapse
no idea, i only tried as root since another member said that permission was denied when not elevated.
gkornaks said:
Thank you! Works for me. Can it be implemented as Magisk module?
Click to expand...
Click to collapse
No
czkb said:
worked for me too
but; as root,
also
while
then just added it in "boot shell" app to be run every time my device started,
works perfectly, thanks.
Click to expand...
Click to collapse
No Problem
You should maybe meantion that it just will work with goodix touchscreens...
I'll implement a toggle into my LineageOS once I've fixed it on Focaltech touchscreens too.
Thank you !! It worked for me.
33bca said:
You should maybe meantion that it just will work with goodix touchscreens...
I'll implement a toggle into my LineageOS once I've fixed it on Focaltech touchscreens too.
Click to expand...
Click to collapse
Ok,should i add it or just remove the thread?
Does it results in more battery drain?
I mean whether the phone goes to deep sleep or not?
00norman00 said:
Does it results in more battery drain?
I mean whether the phone goes to deep sleep or not?
Click to expand...
Click to collapse
For me battery is the same
czkb said:
worked for me too
but; as root,
also
Code:
mad.duck.ffs:/ # echo 1> /proc/tp_wakeup_gesture
mad.duck.ffs:/ # cat /proc/tp_wakeup_gesture
0
while
Code:
mad.duck.ffs:/ # echo "1"> /proc/tp_wakeup_gesture
mad.duck.ffs:/ # cat /proc/tp_wakeup_gesture
1
then just added it in "boot shell" app to be run every time my device started,
works perfectly, thanks.
Click to expand...
Click to collapse
dude such a great help. thanks.
Thanks for sharing ? But I even turned off dt2w on stock rom, just because it too often randomly wake up and input numbers randomly while in my pocket.
I hope there is a way for dt2w to check the proximity sensor before proceeds to wake up the phone.
zogajg26 said:
I'll be showing you how to get dt2w(double tap to wake) working in any rom
Install terminal emulator app from play store and then run these commands
su
ls /proc
cat /proc/tp_wakeup_gesture
echo 1 > /proc/tp_wakeup_gesture
NOTE:After a reboot it won't work until you enter the commands again
NOTE: Only works on goodix panels(to check if you have goodix panel install device info hw app and check if touchscreen says goodix-ts that means that you have a goodix panel)
Credits:33bca/Offain
Click to expand...
Click to collapse
So this is temporary solution? If we restart the phone, it will be back to original right? (I will try, i have goodix, but odds i dont have menu to activate from the stock rom oreo)
**** Wow it worked man.. thanks
I'm getting permission denied even with root.
Sent from my Phh-Treble vanilla using Tapatalk
Hello Guys,
Sry for any inconvenience.
I rooted my phone and install Xposed without any problem I Use all of the Device ID Changer APK App for changing my Device STATUS INFO Like IMEI and Serial Number, and work good for IMEI and Bluetooth Mac Wifi Mac Address... But When I Changing Serial Number Too, When I Restart my Phone To save Changes, Serial number returns to the original serial number. Changes are not stored on the serial number at all and do not save changes... Now I'm Looking in the Root System files and my Question IS: which file in the root system save Serial Number ? I want to change it manually. is it possible ? Or a solution to change the serial number ? Not IMEI.
Starting with Android 10 you can't no longer change device's S/N, AFAIK.
jwoegerbauer said:
Starting with Android 10 you can't no longer change device's S/N, AFAIK.
Click to expand...
Click to collapse
hello.
but my device is android 7 emui 5
Knock... Knock... No Idea ?
deadking said:
Knock... Knock... No Idea ?
Click to expand...
Click to collapse
depend on your phone model ... what is your phone model?
ineedroot69 said:
depend on your phone model ... what is your phone model?
Click to expand...
Click to collapse
hello dear my phone is huawei honor 6x blnl21
i use device id changer but not work for S/N... IM LOOKING FOR FIle or any folder save S/N IN IT.
ineedroot69 said:
depend on your phone model ... what is your phone model?
Click to expand...
Click to collapse
If a S/N is stored, then it's stored in Android's build.prop or default.prop file and nowhere else and it's read from there by bootloader.
deadking said:
hello dear my phone is huawei honor 6x blnl21
i use device id changer but not work for S/N... IM LOOKING FOR FIle or any folder save S/N IN IT.
Click to expand...
Click to collapse
android 6 or 7?
jwoegerbauer said:
If a S/N is stored, then it's stored in Android's build.prop or default.prop file and nowhere else and it's read from there by bootloader.
Click to expand...
Click to collapse
by asking phone model you would know if qualcomm or mediatek and know how to aproach things
ineedroot69 said:
android 6 or 7?
by asking phone model you would know if qualcomm or mediatek and know how to aproach things
Click to expand...
Click to collapse
android 7
deadking said:
android 7
Click to expand...
Click to collapse
If device's Android is rooted check Android's default.prop or build.prop for device's S/N by running this ADB command
Code:
adb shell "getprop | grep serial"
what should return something like this ( if a S/N is stored )
Code:
[ril.serialnumber]: [0123456789ABCDEF ]
[ro.boot.serialno]: [0123456789ABCDEF ]
[ro.serialno]: [0123456789ABCDEF ]
and change it - or add it if missing - to yours by running this ADB commands
Code:
adb shell "setprop persist.ro.serialno YOURSERIALNUMBER"
adb shell "setprop persist.ro.boot.serialno YOURSERIALNUMBER"
Note: Adding persist to front of a property should ensure it survives a device's re-boot.
jwoegerbauer said:
If device's Android is rooted check Android's default.prop or build.prop for device's S/N by running this ADB command
Code:
adb shell "getprop | grep serial"
what should return something like this ( if a S/N is stored )
Code:
[ril.serialnumber]: [0123456789ABCDEF ]
[ro.boot.serialno]: [0123456789ABCDEF ]
[ro.serialno]: [0123456789ABCDEF ]
and change it - or add it if missing - to yours by running this ADB commands
Code:
adb shell "setprop persist.ro.serialno YOURSERIALNUMBER"
adb shell "setprop persist.ro.boot.serialno YOURSERIALNUMBER"
Note: Adding persist to front of a property should ensure it survives a device's re-boot.
Click to expand...
Click to collapse
Sadly for me this is failed in ADB on Android 9. (Cubot Quest)
Deleted member 1890170 said:
If device's Android is rooted check Android's default.prop or build.prop for device's S/N by running this ADB command
Code:
adb shell "getprop | grep serial"
what should return something like this ( if a S/N is stored )
Code:
[ril.serialnumber]: [0123456789ABCDEF ]
[ro.boot.serialno]: [0123456789ABCDEF ]
[ro.serialno]: [0123456789ABCDEF ]
and change it - or add it if missing - to yours by running this ADB commands
Code:
adb shell "setprop persist.ro.serialno YOURSERIALNUMBER"
adb shell "setprop persist.ro.boot.serialno YOURSERIALNUMBER"
Note: Adding persist to front of a property should ensure it survives a device's re-boot.
Click to expand...
Click to collapse
Android 7.1.2 don't work
Is there a way to successfully change S/N ? default.prop doesn't exist and into build.prop no trace of ro.serialno or ro.boot.serialno !!
how it is possible to change it ?
DISCLAIMERThis method is not tested fully and do not attempt to try this if you care about updates and support. This might potentially lock you out of updates. This could lock you out in the CSC Permanently!
Requirement1. Any watch 4 with LTE. Currently there is no known method for changing CSC on BT variant until a way is found to open the CSC change menu.
2. Make sure to back up your watch settings before continuing. This will factory reset your watch
3. Patience and time to set up watch again from scratch
Possible issues/Unconfirmed possibilities
This guide might only work in regions where Samsung pay works on phones but is restricted on watches. Might not work in regions where S-pay doesn't exist at all.
While I do not think changing CSC voids warranty, I cannot be held responsible for any loss/issues arising because of this guide.
You will start receiving updates for the new CSC (or no updates if the model isnt sold in that region). This might also mean your network capabilities, carrier support might be affected.
This guide might work on a non-samsung phone too. If you try and it works, please report it.
GUIDE
Open dialer and enter below code to bring up CSC menu
Code:
*#272*IMEI#
Spoiler: Lazy way if you have adb
adb shell input text *#272*IMEI#
Now match any CSC from the list to known CSC from post #2. No match? Do not worry. Go to Post #3 to find a CSC that could work for you.
Select the CSC and tap install. This will reboot and reset the watch.
Get past the initial setup and see if you have Samsung pay installed.
Spoiler: If Samsung Pay is not found
If not, you need to execute this in ADB after enabling developer options along with ADB Debugging and Debug over WiFi enabled.
Code:
adb shell pm install-existing com.samsung.android.samsungpay.gear
Once you have samsung pay installed, the app would open but you cannot add card yet until you install SPay wear plugin.
Head over to here, download and install the app on phone.
Once installed you can open samsung pay again on watch and continue adding your cards via phone by following the on-screen instructions.
Report the CSC you used so it could be added to the list of working CSC.
Instruction on Using ADBI do not wish to repeat the same guide. Dante63 has made an excellent guide on ADB as part of his SHM mod here. Search for "~~~ ADB Text Instructions ~~~" in his thread and follow the instructions.
CSC known to support Samsung Pay:
MEA - Middle East
SER - Unknown, Disables Bixby
SKZ - Unknown
XFA - Unknown
Click to expand...
Click to collapse
Please help me identify the region for CSC mentioned unknown.
If none of the above CSC is in your list of installed CSC, follow the below guide to choose one.
You need ADB and developer options enabled which you can set up from the guide here written by Dante63. Search for "~~~ ADB Text Instructions ~~~" in his thread and follow the instructions.
Little Background:Samsung Pay app is included in the firmware but is blacklisted in regions where it is not supported by Samsung. Find if you have the app using below code. If the result is non-empty, you are good to go.
Code:
adb shell "ls /system/app | grep 'SamsungPayForGear'"
Guide:All below commands are executed on pc via cmd/terminal with watch connected via adb over wifi.
Jump into watch's adb shell
Code:
adb shell
cd into target directory for convenience
Code:
cd /prism/etc/carriers
List all available CSC that could be selected
Code:
ls
Now, is the essential part. /System/app contains SPay but how does it know the app isnt allowed to be used? The key is a filed called "enforceskippingpackages.txt" inside each CSC folder.
What we are about to do is, take all the folder names from step 3, traverse them and read "enforceskippingpackages.txt" to find which one doesn't skip SPay.
For each CSC name, repeat the below command replacing <CSC> with the 3 letter folder name.
Code:
cat <CSC>/enforceskippingpackages.txt | grep -q SamsungPayForGear.apk && echo "Unsuitable CSC" || echo "Suitable CSC"
Look for the outputs which reads "Suitable CSC". That's what you will select in step 2 of the guide.
is there variant restriction? U model vs B model?
CSC is global?
mind sharing your gw4 model?
This thread is going to blow up.
Brilliant find
If only someone is able to find a way for BT as well before mine gets delivered in October.
jemfalor said:
is there variant restriction? U model vs B model?
Click to expand...
Click to collapse
I don't think its restricted by variant but you can follow post 3 to confirm.
jemfalor said:
mind sharing your gw4 model?
Click to expand...
Click to collapse
SM-R885F - GW4 classic 42mm LTE.
SS3300 said:
If only someone is able to find a way for BT.
Click to expand...
Click to collapse
I'm sure its about time. I do not have much time but anybody who knows about intents could come up with a quick way to start the CSC chooser activity may be. The package is
Code:
com.samsung.sec.android.application.csc
There's a way to find out activity name:
adb shell dumpsys window | find "mCurrentFocus"
but it needs your help, my watch is BT version
When I try "cat <CSC>/enforcekeeping packages.txt", the phrase "Adbd cannot run as route in production builds" appears. Is there a way to solve this?
im live korea and my watch have (KTC KTO LUC LUO SKC SKO) CSC CODE
vijai2011 said:
위의 CSC가 설치된 CSC 목록에 없으면 아래 가이드에 따라 하나를 선택하십시오.
Dante63이 작성한 여기 가이드에서 설정할 수 있는 ADB 및 개발자 옵션이 활성화 되어 있어야 합니다. 스레드에서 " ~~~ ADB 텍스트 지침 ~~~ "을 검색 하고 지침을 따르십시오.
작은 배경:Samsung Pay 앱은 펌웨어에 포함되어 있지만 Samsung에서 지원하지 않는 지역에서는 블랙리스트에 있습니다. 아래 코드를 사용하여 앱이 있는지 확인하십시오. 결과가 비어 있지 않으면 진행해도 됩니다.
[코드]adb 쉘 "ls /system/app | grep 'SamsungPayForGear'"[/코드]
가이드:아래의 모든 명령은 cmd/터미널을 통해 pc에서 실행되며, 시계는 wifi를 통해 adb를 통해 연결됩니다.
시계의 adb 셸로 이동
[코드]adb 셸[/코드]
편의를 위해 대상 디렉토리로 cd
Code:
cd /prism/etc/carriers
선택할 수 있는 사용 가능한 모든 CSC 나열
Code:
ls
이제 필수적인 부분입니다. /System/app에 SPay가 포함되어 있지만 앱 사용이 허용되지 않는다는 것을 어떻게 알 수 있습니까? 키는 각 CSC 폴더 안에 "enforceskippingpackages.txt"라는 파일입니다.
우리가 하려는 것은 3단계에서 모든 폴더 이름을 가져와서 탐색하고 "enforceskippingpackages.txt"를 읽고 SPay를 건너뛰지 않은 폴더를 찾는 것입니다.
각 CSC 이름에 대해 <CSC>를 3자로 된 폴더 이름으로 바꿔 아래 명령을 반복합니다.
[코드]cat <CSC>/enforceskippingpackages.txt | grep -q SamsungPayForGear.apk && echo "부적합한 CSC" || echo "적합한 CSC"[/코드]
"Suitable CSC" 라는 출력을 찾습니다 . 이것이 가이드의 2단계에서 선택하게 될 것입니다.
Click to expand...
Click to collapse
"cat <CSC>/enforcekeeping packages.txt" "Adbd는 빌딩에서 올 수 없다"고 말할 수 있습니다. 이 방법을 사용할 수 있습니까?
im live korea and my watch have (KTC KTO LUC LUO SKC SKO) CSC CODE
vijai2011 said:
Hello,
Got Samsung Pay to work on my GW4 classic LTE today.
Requirement1. Any watch 4 with LTE.
Click to expand...
Click to collapse
GW4 44mm LTE with DBT salescode... no reaction to *#272IME#. Neither with direct input, nor with ADB input.
bamserl said:
GW4 44mm LTE with DBT salescode... no reaction to *#272IME#. Neither with direct input, nor with ADB input.
Click to expand...
Click to collapse
what's your watch model?
jemfalor said:
what's your watch model?
Click to expand...
Click to collapse
SM-R875FZSADBT
bamserl said:
SM-R875FZSADBT
Click to expand...
Click to collapse
replace IMEI with your imei
*#272*IMEI#
jemfalor said:
replace IMEI with your imei
*#272*IMEI#
Click to expand...
Click to collapse
i did, and as i said before... it doesn't work. i just wanted to inform that this doesn't work on all GW4 LTE models - like this code didn't work on all galaxy phones.
bamserl said:
i did, and as i said before... it doesn't work. i just wanted to inform that this doesn't work on all GW4 LTE models - like this code didn't work on all galaxy phones.
Click to expand...
Click to collapse
any chance you hv updated your watch?
share your build number
Do we have to install the SHM from Dante in order to be able to do this? There's nothing happen when I use *#272*IMEI#.
My build number is R865FXXU1BUH9
I tried the following:
1. turn off bluetooth so it disconnect from the phone.
2. run it again.
error message: connection problem or invalid MMI code.
Any help please?
jemfalor said:
any chance you hv updated your watch?
share your build number
Click to expand...
Click to collapse
i have updated to the latest available build.
AP/CP: R875FXXU1BUH9
CSC: R875FOXA1BUH9
jemfalor said:
any chance you hv updated your watch?
share your build number
Click to expand...
Click to collapse
I encountered the same problem, and I am pretty sure that the code I entered is correct, and I found csc.apk in /system, which shows that it exists, but the watch does not work after entering the code
about me:
AP: R875FXXU1BUH9
CP: R875FXXU1BUH9
CSC: R875FOLB1BUH9
Model :SM-R875F
SM-R875FZGATGY