Unable to create APN with "dun" type - Xiaomi Mi A2 / 6X Questions & Answers

Hi guys,
nedd your support, unfortunately to enable tethering with my carrier (italian coopvoce) I have to set the APN type as "default,supl,dun".
But when I try to set the "dun" type, while saving the APN, I get this error "the carrier is not allowing to create dun APN".
I've also aked for support to the carrier and they are confirming that there's no constraint about setting dun and dun is required to enable tethering . I've tried with other phones wht my SIM and I can create APN with dun ...
So I'm lost.
I've have a second SIM (italian TIM business) and tethering seems to work fine.
Any suggestion ?

I had the same problem with Ho.mobile, solved with this guide:
https://talk.sonymobile.com/t5/Xper...te-to-Android-7-0-Xperia-Z5/td-p/1208290#gref
Basically you need to open a shell via ADB on the phone (a PC is required...) and give this command:
Code:
settings put global tether_dun_required 0
from now on you don't need 'dun' in the APN type in order to enable tethering...
Hope this helps
/M

met67 said:
I had the same problem with Ho.mobile, solved with this guide:
https://talk.sonymobile.com/t5/Xper...te-to-Android-7-0-Xperia-Z5/td-p/1208290#gref
Basically you need to open a shell via ADB on the phone (a PC is required...) and give this command:
Code:
settings put global tether_dun_required 0
from now on you don't need 'dun' in the APN type in order to enable tethering...
Hope this helps
/M
Click to expand...
Click to collapse
Thankns bro, it works !!!

met67 said:
I had the same problem with Ho.mobile, solved with this guide:
https://talk.sonymobile.com/t5/Xper...te-to-Android-7-0-Xperia-Z5/td-p/1208290#gref
Basically you need to open a shell via ADB on the phone (a PC is required...) and give this command:
Code:
settings put global tether_dun_required 0
from now on you don't need 'dun' in the APN type in order to enable tethering...
Hope this helps
/M
Click to expand...
Click to collapse
Thanks bro, it works !!!

Related

Help ! Can't activate...

Hi ya
Got my unlock code and it ulocked my G1 succesfully. But now i have some problems activating it . I press the "menu" button then went to "APN settings"
then i pressed again the "menu" button and did "new APN"
So there i'm lost. Cuz i have Cosmote (Cosmote is greek) and i don't know it's APNs..
Can anyone help me ???
What do i need to write ?
name =
APN =
Proxy =
Port=
username =
password =
server =
MMSC =
MMS proxy =
MMS port
MCC =
MNC =
APN type =
Thanks for the help
P.S BTW i don't have a Data plan does it mind ???
Not sure of your APN settings, but you can register over wifi. You will need to setup adb (The Android Debug Bridge), which is a very simple process, so have a look for a guide on that.
If you do find APN settings, it shouldn't matter that you don't have a data plan, they will most probably charge you as you use data. So it will work, but when your phone signs in syns it will probably use a couple of megs which you will get charged a lot for. On my pay and go plan they charge £3/mb :<
ok thanks for the help
Edit: god that's difficult any video tutorial or a tutorial with pics ?
It may look intimidating, but it really isn't hard.
Adb just involves extracting the sdk and installing a driver. Then to enable wifi copy and paste that command.
Here's a guide on setting up ADB
The only command you will need from that huge thread on enabling wifi is this:
Code:
am start -a android.intent.action.MAIN -n com.android.settings/.Settings

[MOD] Enable native tether

As always I'm here to insist that data is data, here is a tethering mod for the Tmobile S6.
About:
What this does: It bypasses the provisioning check, switches your apn to ipv4, (required for tethering) and changes your tethering APN to the normal data APN.
What it does not do: It will not hide your browser headers from t-mobile, if they detect that you are using a desktop browser, you will see it deduct from your tethering balance. Use a User Agent Spoofer to work around this.
Click to expand...
Click to collapse
Prerequisites:
You should have a computer with adb, and your phone should be rooted and have busybox installed.
Click to expand...
Click to collapse
Installation instructions:
Manual via adb:
Download the attached apk, and open a command prompt in the location you have saved it to.
Installing the new Tethering Provision apk:
Code:
adb push TetheringProvision.apk /sdcard/
adb shell
su
mount -o remount,rw /system
cp /sdcard/TetheringProvision.apk /system/app/TetheringProvision/
chmod 644 /system/app/TetheringProvision/TetheringProvision.apk
(The following command only needs to be run if you are on a stock odexed rom.)
Code:
rm -R /system/app/TetheringProvision/arm64
After installation you MUST reboot for the new tethering provision apk to be seen.
Setting proper APN settings, (you will need busybox for this part):
Code:
adb shell
su
mount -o remount,rw /system
sed -i 's/pcweb.tmobile/fast.t-mobile/' /system/csc/customer.xml
sed -i 's/ipv6/ipv4/' /system/csc/customer.xml
Once you have configured the above, you MUST reset apn settings (Settings > Mobile Networks > Access Point Names > More > Reset to default )
Click to expand...
Click to collapse
As always I'm here to insist that data is data, here is a tethering mod for the Tmobile S6.
Awesome man! I'll give this a shot!
Will this mod work on the S6 Edge? If not, any chance you could provide the same mod for the S6 Edge? Thanks for your work.
I attached the tetherprovision apk from the s6 edge.
Fenny said:
As always I'm here to insist that data is data, here is a tethering mod for the Tmobile S6.
About: What this does, it bypasses the provisioning check, switches your apn to ipv4, (required for tethering) and changes your tethering APN to the normal data APN.
What it does not do: It will not hide your browser headers from t-mobile, if they detect that you are using a desktop browser, you will see it deduct from your tethering balance. Use a User Agent Spoofer to work around this.
Prerequisites, you should have a computer with adb, and your phone should be rooted and have busybox installed.
Installation instructions:
Manual via adb:
Download the attached apk, and open a command prompt in the location you have saved it to.
Installing the new Tethering Provision apk:
Code:
adb push TetheringProvision.apk /sdcard/
adb shell
su
mount -o remount,rw /system
cp /sdcard/TetheringProvision.apk /system/app/TetheringProvision/
chmod 644 /system/app/TetheringProvision/TetheringPrivision.apk
(The following command only needs to be run if you are on a stock odexed rom.)
Code:
rm -R /system/app/TetheringProvision/arm64
After installation you MUST reboot for the new tethering provision apk to be seen.
Setting proper APN settings, (you will need busybox for this part):
Code:
adb shell
su
mount -o remount,rw /system
sed -i 's/pcweb.tmobile/fast.t-mobile/' /system/csc/customer.xml
sed -i 's/pcweb.tmobile/fast.t-mobile/' /system/csc/feature.xml
sed -i 's/ipv6/ipv4/' /system/csc/customer.xml
Once you have configured the above, you MUST reset apn settings (Settings > Mobile Networks > Access Point Names > More > Reset to default )
Yes, this post is ugly, I'll clean it up later.
Click to expand...
Click to collapse
YES! I love you. I now can order this phone. When I get it, and I use this, and it works. I will donate to you.
b-reezy said:
Will this mod work on the S6 Edge? If not, any chance you could provide the same mod for the S6 Edge? Thanks for your work.
I attached the tetherprovision apk from the s6 edge.
Click to expand...
Click to collapse
I don't see any reason that my original mod should not work on the galaxy edge, though I would suggest making a backup before replacing it, I did try to make it universal.
Fenny said:
I don't see any reason that my original mod should not work on the galaxy edge, though I would suggest making a backup before replacing it, I did try to make it universal.
Click to expand...
Click to collapse
Alright perfect. I'll give it a shot then and report back my results. I just wanted to clarify considering lack of custom recovery and stock software tar. :good:
b-reezy said:
Alright perfect. I'll give it a shot then and report back my results. I just wanted to clarify considering lack of custom recovery and stock software tar. :good:
Click to expand...
Click to collapse
Make sure you backup your /system/app/TetherProvision folder in that case.
Fenny said:
About: What this does, it bypasses the provisioning check, switches your apn to ipv4, (required for tethering) and changes your tethering APN to the normal data APN.
What it does not do: It will not hide your browser headers from t-mobile, if they detect that you are using a desktop browser, you will see it deduct from your tethering balance. Use a User Agent Spoofer to work around this.
Click to expand...
Click to collapse
After doing this there was NO internet at all through the stock hotspot. Not even a t-mobile warning page. Any ideas?
DC2CA said:
After doing this there was NO internet at all through the stock hotspot. Not even a t-mobile warning page. Any ideas?
Click to expand...
Click to collapse
Sounds like the ipv6 -> ipv4 change on the APNs didn't stick.
Look at your apns, can you see if they are set to ipv4 or ipv6?
*EDIT*
Also, what is the output of:
Code:
grep ipv /system/csc/customer.xml
Fenny said:
Sounds like the ipv6 -> ipv4 change on the APNs didn't stick.
Look at your apns, can you see if they are set to ipv4 or ipv6?
*EDIT*
Also, what is the output of:
Code:
grep ipv /system/csc/customer.xml
Click to expand...
Click to collapse
This is my first time using dos since the very first time (and only time) I used it about 2 years ago. I did mess up on the command prompt for customer.xml and typed fast instead of fast but I went to the xml and ficed the typo. Is it possible that tmobile needs to be t-mobile? If so, how do I go back and fix that.
Thanks for getting back to me tonight. Tethering is a HUGE priority for me so I appreciate the help.
Fenny said:
Sounds like the ipv6 -> ipv4 change on the APNs didn't stick.
Look at your apns, can you see if they are set to ipv4 or ipv6?
*EDIT*
Also, what is the output of:
Code:
grep ipv /system/csc/customer.xml
Click to expand...
Click to collapse
This is my first time using dos since the very first time (and only time) I used it about 2 years ago. I did mess up on the command prompt for customer.xml and typed fsat instead of fast but I went to the xml and fixed the typo. Is it possible that tmobile needs to be t-mobile? If so, how do I go back and fix that.
Thanks for getting back to me tonight. Tethering is a HUGE priority for me so I appreciate the help.
DC2CA said:
This is my first time using dos since the very first time (and only time) I used it about 2 years ago. I did mess up on the command prompt for customer.xml and typed fsat instead of fast but I went to the xml and fixed the typo. Is it possible that tmobile needs to be t-mobile? If so, how do I go back and fix that.
Thanks for getting back to me tonight. Tethering is a HUGE priority for me so I appreciate the help.
Click to expand...
Click to collapse
Yes, the apn should read fast.t-mobile.com
Attached is my customer.xml for reference.
Alternatively you could try:
Code:
adb shell
su
mount -o remount,rw /system
sed -i 's/fast.tmobile/fast.t-mobile/' /system/csc/customer.xml
sed -i 's/fsat.tmobile/fast.t-mobile/' /system/csc/customer.xml
Then, reset apns and reboot.
Fenny said:
Yes, the apn should read fast.t-mobile.com
Attached is my customer.xml for reference.
Alternatively you could try:
Code:
adb shell
su
mount -o remount,rw /system
sed -i 's/fast.tmobile/fast.t-mobile/' /system/csc/customer.xml
sed -i 's/fsat.tmobile/fast.t-mobile/' /system/csc/customer.xml
Then, reset apns and reboot.
Click to expand...
Click to collapse
I'll try it but I think you need to edit the first post? I'll report in a few. Thanks again for working through this.
I'm not familiar with code at all so keep that in mind.
Sent from my SGH-T999 using Tapatalk
---------- Post added at 03:22 AM ---------- Previous post was at 03:12 AM ----------
Fenny said:
Yes, the apn should read fast.t-mobile.com
Attached is my customer.xml for reference.
Alternatively you could try:
Code:
adb shell
su
mount -o remount,rw /system
sed -i 's/fast.tmobile/fast.t-mobile/' /system/csc/customer.xml
sed -i 's/fsat.tmobile/fast.t-mobile/' /system/csc/customer.xml
Then, reset apns and reboot.
Click to expand...
Click to collapse
did not work.
Just kidding.. I am a liar. Everything seems to be working now. Speed is way better than it was with wifi tether router too!
DC2CA said:
I'll try it but I think you need to edit the first post? I'll report in a few. Thanks again for working through this.
I'm not familiar with code at all so keep that in mind.
Sent from my SGH-T999 using Tapatalk
---------- Post added at 03:22 AM ---------- Previous post was at 03:12 AM ----------
did not work.
Click to expand...
Click to collapse
What do your APNs look like?
I added an APN for tethering based on the other thread in QnA so I'm not sure why it isn't showing. I'm tethered now with wifi router whoever. But it's slow so I'm hoping native can be better.
DC2CA said:
I added an APN for tethering based on the other thread in QnA so I'm not sure why it isn't showing. I'm tethered now with wifi router whoever. But it's slow so I'm hoping native can be better.
Click to expand...
Click to collapse
Okay, I think it will, once we get it figured out. Open that apn up, and let's see the settings.
Thanks Fenny. You misspelled TetheringProvision in the chmod instruction line, so you should probably fix that when you get to cleaning up the thread.
teiglin said:
Thanks Fenny. You misspelled TetheringProvision in the chmod instruction line, so you should probably fix that when you get to cleaning up the thread.
Click to expand...
Click to collapse
Hah, good call. That's what I get for posting releases from my tablet.
Fenny said:
Okay, I think it will, once we get it figured out. Open that apn up, and let's see the settings.
Click to expand...
Click to collapse
Everything seems to be good to go. I think I confused myself trying to work through this is the middle of the night
Thanks for this. Do we still use the T-Mobile hotspot app? And my wifi calling seems to be broken after this. Any suggestions? Thanks.

[SOLVED] problem WiFi hotspot

Finally found the solution with my z3c. Problem started with Lollipop. When I was using my phone as portable AP there was no Internet access on any device connected. There were many descriptions of solutions (manual settings, soft reset, deleting all APNs) but none of them worked for me.
My service provider suggested changing APN settings:
Use whatever APN you find working for you, and change "APN type" field from "default,supl" to "default,dun".
Now everything works just like it's supposed to.
Sorry if someone posted this already or if it's under wrong subject. This is my first thread. Thanks.
I use this solution and it works for me:
http://forum.xda-developers.com/z3/general/lollipop-tethering-t3058923
------------------------------------------------------------
This can be fixed permanently using the following procedure (UPDATE: no root required):
Enable developer mode (Go to Settings -> About phone, and click on the build number until the developer mode is enabled).
Enable USB debugging under Settings -> Developer options
Connect the device with a USB cable to a computer with the Android SDK platform tools installed (any modern adb.exe works, the one included with FlashTool, for example)
Start an adb shell: adb shell
In the adb shell, run this command: settings put global tether_dun_required 0
------------------------------------------------------------
BarajaVLC said:
I use this solution and it works for me:
http://forum.xda-developers.com/z3/general/lollipop-tethering-t3058923
------------------------------------------------------------
This can be fixed permanently using the following procedure (UPDATE: no root required):
Enable developer mode (Go to Settings -> About phone, and click on the build number until the developer mode is enabled).
Enable USB debugging under Settings -> Developer options
Connect the device with a USB cable to a computer with the Android SDK platform tools installed (any modern adb.exe works, the one included with FlashTool, for example)
Start an adb shell: adb shell
In the adb shell, run this command: settings put global tether_dun_required 0
------------------------------------------------------------
Click to expand...
Click to collapse
My post is about portable hot spot, not USB tethering. I'm not sure if your post is about the same thing
If yes, then I'm very glad that we have multiple solutions for the same problem
Whoa! My girlfriend had this same problem on a moto g 2014 she bought a year ago, so yesterday I changed her APN type as you said and now everything's working. Thanks a lot.
Sent from my D5833 using Tapatalk
dgaspa75 said:
My post is about portable hot spot, not USB tethering. I'm not sure if your post is about the same thing
If yes, then I'm very glad that we have multiple solutions for the same problem
Click to expand...
Click to collapse
Yes, the solution I provided makes portable WiFi hotspot work
APN Type change to "default,dun" worked like a charm for me.
'settings' is not recognized
i have same problem hotspot is not working i installed android studio 3.0.1 and ran command
settings put global tether_dun_required 0
i get error
C:\Users\log\AndroidStudioProjects\MyApplication>settings put global tether_dun_required 0
'settings' is not recognized as an internal or external command,
operable program or batch file.
any help please
APN Type change to "default,dun" worked like a charm for me...thanks brother
Thanks so much for this! Genius!!

LG Watch Sport: ADB?

Anyone with the new watch, the "LG Watch Sport", figured out how to get a USB or USB-like connection to a Windows computer? WiFi is greyed out and Bluetooth isn't an option on my Win box
BGot ADB up via Wi-Fi:
1) Connect watch and computer to same Wi-Fi network,
2) In Developer options (available after tapping 7 times on Settings > About > Build number)
Turn "ADB debugging" = on
3) Turn "Debug over Wi-Fi" = on
4) To get the watch's ip address go Settings > Connectivity > Wi-Fi
5) Tap on active Wi-Fi connection name
6) start command window
7) Type: adb connect [ip address of watch]
Easy, peezy!
BTW, it's an unbelievable battery killer. 30 min. = maybe 8 hours normal use.
Anybody know where the APN info's stored? Like to pull it, change it & push it back, if ATT didn't lock it down.
roebling said:
BGot ADB up via Wi-Fi:
1) Connect watch and computer to same Wi-Fi network,
2) In Developer options (available after tapping 7 times on Settings > About > Build number)
Turn "ADB debugging" = on
3) Turn "Debug over Wi-Fi" = on
4) To get the watch's ip address go Settings > Connectivity > Wi-Fi
5) Tap on active Wi-Fi connection name
6) start command window
7) Type: adb connect [ip address of watch]
Easy, peezy!
BTW, it's an unbelievable battery killer. 30 min. = maybe 8 hours normal use.
Anybody know where the APN info's stored? Like to pull it, change it & push it back, if ATT didn't lock it down.
Click to expand...
Click to collapse
If you have the watch, can you also check if fastboot can be put into wifi mode?
matejdro said:
If you have the watch, can you also check if fastboot can be put into wifi mode?
Click to expand...
Click to collapse
I've tried "fastboot oem unlock", "fastboot oem get_identifier_token" and "fastboot connect 192.168.1.9"--all fail with "< waiting for any device >"
With watch in bootloader mode, "adb connect 192.168.1.9" also fails, with:
"unable to connect to 192.168.1.9:5555: cannot connect to 192.168.1.9:5555: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. (10060)"
Android Police on 2016/03/04 wrote that wifi fastboot mode exists on Moto G's fastboot menu. No menu option for that on this LG Watch Sport.
Yes I meant the thing from that Android Police article. Well that is a bummer, thanks for checking anyway!
---------- Post added at 03:56 PM ---------- Previous post was at 03:22 PM ----------
Just to clarify, there IS a fastboot menu, but it is a bit useless since there is no Wifi option and you can't connect the cable?
There's a way to load system images on these things, I just don't know what it is.
Know a Verizon tech or the AT&T Store repair guy? There's a code for Wi-Fi or a proprietary cord, perhaps attaching under the back. My money's on a funky cord.
no USB debugging for LG Sport?
Wifi debugging tends to be slow imho
In case anyone didn't know, you can use ADB to push custom ringtones to /sdcard/Ringtones. After rebooting, they'll show up in the ringtone picker. You can set a custom alarm, too. That's a pain in the butt though, requires sideloading ES File Explorer because there's no picker for alarm tones.
Sent from my LG V20 using XDA Labs
roebling said:
BGot ADB up via Wi-Fi:
1) Connect watch and computer to same Wi-Fi network,
2) In Developer options (available after tapping 7 times on Settings > About > Build number)
Turn "ADB debugging" = on
3) Turn "Debug over Wi-Fi" = on
4) To get the watch's ip address go Settings > Connectivity > Wi-Fi
5) Tap on active Wi-Fi connection name
6) start command window
7) Type: adb connect [ip address of watch]
Easy, peezy!
BTW, it's an unbelievable battery killer. 30 min. = maybe 8 hours normal use.
Anybody know where the APN info's stored? Like to pull it, change it & push it back, if ATT didn't lock it down.
Click to expand...
Click to collapse
I did that, but when I try to sideload an app it won't go through, and ADB devices brings up that it's unauthorized.
chrisrodsa210 said:
I did that, but when I try to sideload an app it won't go through, and ADB devices brings up that it's unauthorized.
Click to expand...
Click to collapse
When you first connect device to computer does watch display menu for authorization? If not, try "ADB devices". If so, scroll down to "Always allow connections..."
Picked up this watch last week and its exciting that people are already looking to unlock boot loader. Any idea of when it'll get its own dedicated forum on XDA?
NickWhit1992 said:
In case anyone didn't know, you can use ADB to push custom ringtones to /sdcard/Ringtones. After rebooting, they'll show up in the ringtone picker. You can set a custom alarm, too. That's a pain in the butt though, requires sideloading ES File Explorer because there's no picker for alarm tones.
Click to expand...
Click to collapse
I've connected my watch to my PC and when I command:
adb puch -p sdcard/Ringtones <file name>.mp3
cannot stay 'sdcard/Ringtones': No such file or directory
Can you please elaborate on the command to push through adb? Thanks!
Also, ive tried:
and push -p C:\<local drive>\<file name>.mp3 sdcard\Ringtones
Transferring: 100%
failed to copy '<filepath>\<file name>.mp3' to 'sdcard\Ringtones': couldn't create file: Read-only file system
Is there a way to make it not a read only system?
Maxninja said:
I've connected my watch to my PC and when I command:
adb puch -p sdcard/Ringtones <file name>.mp3
cannot stay 'sdcard/Ringtones': No such file or directory
Can you please elaborate on the command to push through adb? Thanks!
Also, ive tried:
and push -p C:\<local drive>\<file name>.mp3 sdcard\Ringtones
Transferring: 100%
failed to copy '<filepath>\<file name>.mp3' to 'sdcard\Ringtones': couldn't create file: Read-only file system
Is there a way to make it not a read only system?
Click to expand...
Click to collapse
Code:
adb push ringtone.mp3 sdcard/Ringtones
I put the ringtones in the ADB folder and used that for each one, and it worked fine for me. I don't know why it's not working for you, perhaps an update changed things. I forgot my watch at home today, or I'd try it again. If I remember when I get home tonight, I'll look into it.
Sent from my LG V20 using XDA Labs
NickWhit1992 said:
I put the ringtones in the ADB folder and used that for each one, and it worked fine for me. I don't know why it's not working for you, perhaps an update changed things. I forgot my watch at home today, or I'd try it again. If I remember when I get home tonight, I'll look into it.
Click to expand...
Click to collapse
I just pushed it through and used ES explorer to set the mp3 file as ringtone. I put in / for the ringtones instead of \ ; so now it works. Thanks!
Using developer options, and ADB debugging maybe, could this guide be used to change the LTE bands on our watches?
https://forum.xda-developers.com/gal...ds-to-t2886059
Bands
So still no news on getting bands unlocked on our devices?
roebling said:
BGot ADB up via Wi-Fi:
1) Connect watch and computer to same Wi-Fi network,
2) In Developer options (available after tapping 7 times on Settings > About > Build number)
Turn "ADB debugging" = on
3) Turn "Debug over Wi-Fi" = on
4) To get the watch's ip address go Settings > Connectivity > Wi-Fi
5) Tap on active Wi-Fi connection name
6) start command window
7) Type: adb connect [ip address of watch]
Easy, peezy!
BTW, it's an unbelievable battery killer. 30 min. = maybe 8 hours normal use.
Anybody know where the APN info's stored? Like to pull it, change it & push it back, if ATT didn't lock it down.
Click to expand...
Click to collapse
Hey, this article explains how to set the APN through adb: android.stackexchange.com/questions/117125/how-do-i-add-an-apn-via-adb
UPDATE: This is a better APN guide: forum.xda-developers.com/showpost.php?p=73558495&postcount=5
It is for the watch Urbane and freedomPOP, but I imagine that there is not a lot of differences between the two watches and it is, essentially, the same procedure. It does require an unlocked bootloader.
roebling said:
I've tried "fastboot oem unlock", "fastboot oem get_identifier_token" and "fastboot connect 192.168.1.9"--all fail with "< waiting for any device >"
With watch in bootloader mode, "adb connect 192.168.1.9" also fails, with:
"unable to connect to 192.168.1.9:5555: cannot connect to 192.168.1.9:5555: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. (10060)"
Android Police on 2016/03/04 wrote that wifi fastboot mode exists on Moto G's fastboot menu. No menu option for that on this LG Watch Sport.
Click to expand...
Click to collapse
Have you tried bluetooth debugging?
Hey user "Grumps" managed to put the watch into download mode with a wifi connection. Could this be used to unlock the bootloader, root and modify the APNs?
URL:
forum.xda-developers.com/watch-sport/help/attempting-to-enter-recovery-mode-t3617141
justice89 said:
Hey, this article explains how to set the APN through adb: android.stackexchange.com/questions/117125/how-do-i-add-an-apn-via-adb
UPDATE: This is a better APN guide: forum.xda-developers.com/showpost.php?p=73558495&postcount=5
It is for the watch Urbane and freedomPOP, but I imagine that there is not a lot of differences between the two watches and it is, essentially, the same procedure. It does require an unlocked bootloader.
Click to expand...
Click to collapse
This only works if you have rooted your watch, otherwise you can't do the su command.
Does anyone know if someone is working on rooting this watch?

Bell, Telus, Koodo and Freedom Mobile Volte and Vowifi Calling Working *Update Android 11 Require Root*

Finally
I can confirm it worked on my Oneplus 7 Pro both Volte and Vowifi calling it also can work on oneplus 6, and 6T since I don't have a device so I can't test it.
some people are unable to activated so this method require additional step for them.
Install QPST: https://mega.nz/file/zQt3ESDA#dd69iA2r9xZaYwWvYrCvVHl-OmjucIWI4ETFBTO5bM8 (This tool only work on Oneplus 6,6t, 7 series. Oneplus has blocked this tool on oneplus 5 series)
Next steps:
find PDC tool from installed QPST and open
select device from drop-down menu, if it is empty, you will have to reinstall/choose another driver
now right-click on overseas commerical ds and select Deactivated - Sub0
now right-click on Commerical-TMO and select SetSelectedConfig - Sub0
and now button Activate
Restart your phone than apply following step:
Oneplus Usb driver (Dont install it if you already installed this before)
https://mega.nz/file/GYkxjByK#M6CZA9c9JQaX27j3dLzXRjBrclSVSB9cJs00B5BXdAI
After unzipping pixel3.zip you need to go to: Pixel3\mcfg_sw\generic\Pixel\NA\Freedom\VoLTE and copy mcfg_sw.mbn file to folder where you will have your EfsTools saved. It will ask you to overwrite one that is in that folder. Press yes.
Now follow these steps:
This method doesn't required root.
0. Make sure that you just enabled the VoWiFi and VoLTE in your carrier first !!!
1. Download and install the oneplus LogKit and Engineering mode apk:
3. Type *#800# --> oneplus Logkit --> Function Switch --> enable VoLTE and VoWifi switch
4. Open Settings --> WiFi & Intenet --> SIM & netwok --> enable VoLTE and VoWifi switch
5. Connect your phone to PC
6. Type *#801# in Phone app and enable Full-port switch (if your computer unable to recognize COM PORT try installing qualcomm driver: https://mega.nz/file/jV9ByarL#lbryKSC6uk9D-GTErtJ0SHyVOfWKA2TIl-psXmhj4YU)
7. Download and unzip the EfsTools with config files includes. (Make sure copy mcfg_sw.mbn file from pixel3.zip freedom folder replace the file if already exit.)
8. Open CMD as Administrator on the PC, navigate to the folder where you extract the files (eg. cd c:\EfsTools-0.10-modded-1.2-win32)
9. Now execute the following commands:
EfsTools.exe efsInfo
If your Freedom sim in Slot 1 use this command:
1. EfsTools.exe writeFile -i mcfg_autoselect_by_uim -o /nv/item_files/mcfg/mcfg_autoselect_by_uim
2. EfsTools.exe uploadDirectory -i mcfg_sw.mbn -o / -v
If your Freedom sim in Slot 2 use this command:
1. EfsTools.exe writeFile -i mcfg_autoselect_by_uim -o /nv/item_files/mcfg/mcfg_autoselect_by_uim -s 1
2. EfsTools.exe uploadDirectory -i mcfg_sw.mbn -o / -s 1
Thats it. Commands with "1" on at the end are for the second SIM card.
You must register here in order to wifi calling work: https://vowifi.authenticateme.ca/
Credit goes to @popos1 and @astracd. Original Post: https://forums.oneplus.com/threads/freedom-mobile-wifi-calling-working.1284987/
You need These file:
Pixel 3 mbn file:
https://forum.xda-developers.com/showpost.php?p=78563337&postcount=4 (Recommend for oneplus 6 series)
Pixel 4 mbn file:
https://forum.xda-developers.com/pixel-4/help/mbn-files-pixel-4-request-t4050247 (Recommend for Oneplus 7 series)
Thanks for @asasanc
Oneplus logkit:
https://mega.nz/file/rZlADYzD#Pg8vLZI4tZ16VXe-v-JfPLCiCab9fTTWwFcPBI04oho
Efstool:
https://mega.nz/file/fQcnQAZT#i0dRA6PvsuK4_PmLHPVXSwhOZroSsR6P1CuUDHwHW8g
Enigneering Mode apk:
https://www.apkmirror.com/apk/onepl...-0-171117173719-25c8842-android-apk-download/
Join Telegram group:
https://t.me/joinchat/QOPwqkqivRqnI4YIW2bojA
Edit:
Alot of people have confirm this method working on Oneplus 6,6t, 7,7 pro, 7t, and 8. For some people VoLTE works right away but for some it take few day to provision as per freedom it could take somewhere 72-120 HR to provision.
Edit 2:
Pixel 2 mbn for oneplus 5. This is recommended for Oneplus 5 only.
https://mega.nz/file/HUsHVYqS#n7pDP-mEMIY5MXffqViAVoqPgF_Au3hzzm6s5dgBZu0
Update: 3/25/2021
This new method requires Root on Android 11.​Please note Engineering won't work on Android 11. you need to follow the following steps to open the ports.
you need Adb tool Platform-tool.
https://dl.google.com/android/repository/platform-tools-latest-windows.zip
1. Extract the Folder
2. Open the Platform Tool folder then hold the Shift key and right-click on empty space to open the Command Prompt in the same folder.
3. Then Type "ADB shell"
4. Then type "su" (This will ask root access on your phone)
5. Then type this command to open the port.
"setprop sys.usb.config diag,serial_cdev,rmnet,adb"
Then you have will access to EFStool and PDC tool to Flash mbn file using the above method
can any other users confirm this is working? I wonder if this will allow the oneplus to connect to band 13 then as well? Because freedom was keeping band 13 for phones compatible with VOLTE on their network.
It works for me - wifi calling on OnePlus 6T McLaren. But not volte. I'm unsure if there is volte in my area. My wife have s9 bought from freedom and it doesn't switch to volte (wifi calling works)
astracd said:
It works for me - wifi calling on OnePlus 6T McLaren. But not volte. I'm unsure if there is volte in my area. My wife have s9 bought from freedom and it doesn't switch to volte (wifi calling works)
Click to expand...
Click to collapse
does this trick only work on stock roms, or would it work on a custom rom as well?
What do you mean by Step 0?
Edit: Did some Googling and found that you have to enable it on a webpage. Use this link to do so: https://vowifi.authenticateme.ca
I can't seem to get past the command: EfsTools.exe efsInfo
Keep getting the follow: Critical Error. The Operation has timed out.
And yes I am in an elevated command prompt.
Checking device manager shows me that when I have Serial and Full-port Switch ON, I have three devices (CDev Serial, OnePlus, OnePlus) that there are no drivers installed for. Not sure where to get these as searching automatically for an updated driver returns nothing...
omvir said:
can any other users confirm this is working? I wonder if this will allow the oneplus to connect to band 13 then as well? Because freedom was keeping band 13 for phones compatible with VOLTE on their network.
Click to expand...
Click to collapse
Yes it does connect to band 13.
CrazedBoredom said:
What do you mean by Step 0?
Edit: Did some Googling and found that you have to enable it on a webpage. Use this link to do so: https://vowifi.authenticateme.ca
I can't seem to get past the command: EfsTools.exe efsInfo
Keep getting the follow: Critical Error. The Operation has timed out.
And yes I am in an elevated command prompt.
Checking device manager shows me that when I have Serial and Full-port Switch ON, I have three devices (CDev Serial, OnePlus, OnePlus) that there are no drivers installed for. Not sure where to get these as searching automatically for an updated driver returns nothing...
Click to expand...
Click to collapse
here you can download this oneplus driver . but can get this driver as well when you connect your phone to computer.
https://mega.nz/file/GYkxjByK#M6CZA9c9JQaX27j3dLzXRjBrclSVSB9cJs00B5BXdAI
nabbasi said:
here you can download this oneplus driver . but can get this driver as well when you connect your phone to computer.
https://mega.nz/file/GYkxjByK#M6CZA9c9JQaX27j3dLzXRjBrclSVSB9cJs00B5BXdAI
Click to expand...
Click to collapse
I've installed the one from my phone and still no dice. Still no drivers for the three devices. =\
This is awesome news. Thanks for sharing brother!
CrazedBoredom said:
I've installed the one from my phone and still no dice. Still no drivers for the three devices. =\
Click to expand...
Click to collapse
.
Did you run CMD as administrator if not try with that.
nabbasi said:
.
Did you run CMD as administrator if not try with that.
Click to expand...
Click to collapse
Yep, no dice.
astracd said:
It works for me - wifi calling on OnePlus 6T McLaren. But not volte. I'm unsure if there is volte in my area. My wife have s9 bought from freedom and it doesn't switch to volte (wifi calling works)
Click to expand...
Click to collapse
I have op6t and am trying to do this but i am stuck on step 6 (6. Type *#801# in Phone app and enable Serial and Full-port switch).
everytime i try to do that , nothing happens. I am rooted on stock oxygen 10.3.5 if that matters.
darkknight200 said:
I have op6t and am trying to do this but i am stuck on step 6 (6. Type *#801# in Phone app and enable Serial and Full-port switch).
everytime i try to do that , nothing happens. I am rooted on stock oxygen 10.3.5 if that matters.
Click to expand...
Click to collapse
I have google dialer. So each time I run codes need to disable it and enable OP dialer as default dialer. So that could be one of reasons that doesn't work for you.
Second reason that it can be
You also need to get dialer that works as latest version doesn't work. I will try to find a post where they had dialer that works. I believe it was in one of OP5 topics for enabling the volte/vowifi.
Third reason
You would need to install engineering mode
I will try to attach the app
astracd said:
I have google dialer. So each time I run codes need to disable it and enable OP dialer as default dialer. So that could be one of reasons that doesn't work for you.
Second reason that it can be
You also need to get dialer that works as latest version doesn't work. I will try to find a post where they had dialer that works. I believe it was in one of OP5 topics for enabling the volte/vowifi.
Third reason
You would need to install engineering mode
I will try to attach the app
Click to expand...
Click to collapse
ya i managed to install the engineering mode apk from https://www.apkmirror.com/apk/onepl...-0-171117173719-25c8842-android-apk-download/ and can dial in the op dialer fine now.
when i try to enable serial it crashes but full port switch is able to turn on though.
darkknight200 said:
ya i managed to install the engineering mode apk from https://www.apkmirror.com/apk/onepl...-0-171117173719-25c8842-android-apk-download/ and can dial in the op dialer fine now.
when i try to enable serial it crashes but full port switch is able to turn on though.
Click to expand...
Click to collapse
Full port is enough. You don't need serial. :good:
astracd said:
Full port is enough. You don't need serial. :good:
Click to expand...
Click to collapse
ok now i am trying the commands in full admin but i keep getting the error message in the screenshot attatched
edit also when I have the serial port enabled, i chekd device manager and it gave me this in the 2nd screenshot. In normal mode without serial port enable, my phone shows up as normal function phone storage device.
darkknight200 said:
ok now i am trying the commands in full admin but i keep getting the error message in the screenshot attatched
edit also when I have the serial port enabled, i chekd device manager and it gave me this in the 2nd screenshot. In normal mode without serial port enable, my phone shows up as normal function phone storage device.
Click to expand...
Click to collapse
Did you open CMD as administrator?
And when you connect phone to laptop did laptop made connection sound ?
astracd said:
Did you open CMD as administrator?
And when you connect phone to laptop did laptop made connection sound ?
Click to expand...
Click to collapse
Yes to both
Other things I can think of right now change charging to drive for your usb connection.
Sometimes windows acting weird when the addresses are long. C:\xxxxxxxxx
I had saved mine in C:\efstools
I renamed folder didn't use full name
I don't think this will help, but worth to try. I will think more about it.
astracd said:
Other things I can think of right now change charging to drive for your usb connection.
Sometimes windows acting weird when the addresses are long. C:\xxxxxxxxx
I had saved mine in C:\efstools
I renamed folder didn't use full name
I don't think this will help, but worth to try. I will think more about it.
Click to expand...
Click to collapse
stil no luck with renaming them and using different state from charging to file transfer mode

Categories

Resources