CM12 for XT1028 (Verizon) and XT1031 (Boost Mobile)
aka, the devices forgotten about by Motorola and CyanogenMod
{
"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"
}
(screenshot c/o SykkNyzz)
UPDATE: 04-02-2015
With the goal of this thread having been solely to get 3g data working, it is "mission accomplished"!
There will no longer be a build posted here...please use individual build threads to download and discuss.
Thanks to everyone who helped bring working calls and data to the CDMA Moto G!
-----
VOICE: Working
SMS: Working (stock app broken)
3G DATA: Working
CONTRIBUTORS, LOGGERS, CODE JUNKIES, HACK N' SLASHERS & TESTERS
@Meticulus (data fix)
@crouse(original outgoing call fix)
@mightysween
@leeisme
@CodyF86
@amarc78
@SykkNyzz
@Awesomeslayerg
@russ722
@mbj731
@starkly_raving
@mistercheese
@hhp_211
@sugarbuger70
@classic757
This is the workaround that @crouse came up with.
The original boolean values were changed so that we no longer need a SIM for the phone to initiate a call.
location:
/home/dev/android/system1/packages/services/Telephony/src/com/android/servic
es/telephony/TelecomAccountRegistry.java
Code:
*** // If we did not list ANY accounts, we need to provide a "default" SIM
account
******* // for emergency numbers since no actual SIM is needed for dialing
emergency
******* // numbers but a phone account is.
******* if (mAccounts.isEmpty()) {
*********** mAccounts.add(new AccountEntry(PhoneFactory.getDefaultPhone(),
false /* emergency */,
******************* false /* isDummy */));
******* }
******* // Add a fake account entry.
******* if (DBG && phones.length > 0 &&
"TRUE".equals(System.getProperty("cdma_sim"))) {
*********** mAccounts.add(new AccountEntry(phones[0], false /* emergency */,
false /* isDummy */));
******* }
Click to expand...
Click to collapse
mightysween said:
This is the workaround that @crouse came up with.
The original boolean values were changed so that we no longer need a SIM for the phone to initiate a call.
location:
/home/dev/android/system1/packages/services/Telephony/src/com/android/servic
es/telephony/TelecomAccountRegistry.java
Code:
Click to expand...
Click to collapse
oh good you found it, after that i got smarter and just made the subscription manager check if the phoneid and subid were >= -1 which did the same thing. everything does seem to actually work, but for whatever reason the code isnt finished / is missing what makes a cdma only phone ok. with a sim everything checks if the id's are >= 0 when with a cdma only its set to -1 .. idk if it makes any sense but thats what got it going
And in TelecomAccountRegistry.java in the setup accounts function check if the subscription id is >= -1 i instead of zero
crouse said:
oh good you found it, after that i got smarter and just made the subscription manager check if the phoneid and subid were >= -1 which did the same thing. everything does seem to actually work, but for whatever reason the code isnt finished / is missing what makes a cdma only phone ok. with a sim everything checks if the id's are >= 0 when with a cdma only its set to -1 .. idk if it makes any sense but thats what got it going
And in TelecomAccountRegistry.java in the setup accounts function check if the subscription id is >= -1 i instead of zero
Click to expand...
Click to collapse
I noticed in looking through old logs that ConnectivityService seems to look for phoneid of -1000 when trying to bring up the network. Wonder why that is... shouldn't it be the same globally?
Need to pull some recent radio logs...
Sent from my XT1032 using XDA Free mobile app
mightysween said:
I noticed in looking through old logs that ConnectivityService seems to look for phoneid of -1000 when trying to bring up the network. Wonder why that is... shouldn't it be the same globally?
Need to pull some recent radio logs...
Sent from my XT1032 using XDA Free mobile app
Click to expand...
Click to collapse
yeah, -1000 is invalid for phone id and some other things changing that makes the phone break completely
If this works, then there may be hope for the Moto G CDMA Community.
Sent from my Moto G using XDA Free mobile app
I can confirm calls and SMS working on xt1031. I'll try to get some logs soon if that will help.
mbj731 said:
I can confirm calls and SMS working on xt1031. I'll try to get some logs soon if that will help.
Click to expand...
Click to collapse
Radio log would be greatly appreciated
Sent from my XT1032 using XDA Free mobile app
Radio log pulled with extreme logcat since I'm not near a PC.
https://docs.google.com/file/d/0B-lOZaFdyllSdDBZWXdLY19NbXM/edit?usp=docslist_api
Also, it may be helpful when taking logs to make sure WiFi is OFF so that the 3g network is attempting to connect. Then toggle airplane mode on, wait 10 seconds, and toggle airplane mode off and let it try again to connect. This may help expose more for us to examine.
I apologize, but how is someone able to send SMS if 3g data don't work or are you guys sending it threw WiFi?
mbj731 said:
Radio log pulled with extreme logcat since I'm not near a PC.
https://docs.google.com/file/d/0B-lOZaFdyllSdDBZWXdLY19NbXM/edit?usp=docslist_api
Click to expand...
Click to collapse
Great, thanks.
Right after RIL bringup we get SIM_COUNT=1
And then we end up with a bunch of failed inits and nulls because of incorrect subID.
I think we need a convenient way to "crowdsource" searching through source. Anyone able to upload raw telephony/ connectivity folder trees somewhere that everyone can participate in looking for relevant code?
Sent from my XT1032 using XDA Free mobile app
kijp15 said:
I apologize, but how is someone able to send SMS if 3g data don't work or are you guys sending it threw WiFi?
Click to expand...
Click to collapse
SMS works over voice network, not over data network
Sent from my XT1032 using XDA Free mobile app
mightysween said:
Great, thanks.
Right after RIL bringup we get SIM_COUNT=1
And then we end up with a bunch of failed inits and nulls because of incorrect subID.
I think we need a convenient way to "crowdsource" searching through source. Anyone able to upload raw telephony/ connectivity folder trees somewhere that everyone can participate in looking for relevant code?
Sent from my XT1032 using XDA Free mobile app
Click to expand...
Click to collapse
I don't know anything about how this all works. But the "unexpected number of modems 0" line seems odd. Also, there's a lot of references to CDMA in the logs so it's somewhat detecting a CDMA device, maybe?
mbj731 said:
I don't know anything about how this all works. But the "unexpected number of modems 0" line seems odd. Also, there's a lot of references to CDMA in the logs so it's somewhat detecting a CDMA device, maybe?
Click to expand...
Click to collapse
Yes, but it also thinks that this CDMA device is an LTE device... Because of the SIM issue.
The unexpected number of modems also reflects that it is requiring a SIM to establish a network socket.
if we can tell it not to look for or require SIM in the first place, these errors will resolve and we should end up with a connection
Alternately, we may be able to trick the system into thinking there is a SIM and then directing it to use NV manually... Probably a more likely fix right now.
Notes, mostly to help keep track of what I have looked at:
Looking around here...this is where we need to be able to provide correct subid and introduce the possibility of there being no SIM at all. As noted earlier "sim count" is being returned as "1".
https://github.com/CyanogenMod/andr...nmod/setupwizard/setup/ChooseDataSimPage.java
So, before the Setup Wizard gets this far, we need to have established correct subscription and set simcount to 0 (even if it needs to be done manually for purposes of testing). Then call new function that takes proper info to establish data connection
This is probably where it will take place:
https://github.com/CyanogenMod/andr...ogenmod/setupwizard/setup/MobileDataPage.java
This shows that the only option right now for data is to either have one or two SIM cards, and if absent to route to a missing Sim page. Need to now look closely at Telephony Manager where SIM count is actually established.
https://github.com/CyanogenMod/andr...nmod/setupwizard/setup/CMSetupWizardData.java
subid relies directly on SIM and will not be set if SIM is unavailable:
https://github.com/CyanogenMod/andr...id/internal/telephony/SubscriptionHelper.java
Sim count coming back as one might be because of the changes I made, try an unmodified one and see what it comes back as
crouse said:
Sim count coming back as one might be because of the changes I made, try an unmodified one and see what it comes back as
Click to expand...
Click to collapse
Right, and that is OK as long as we can use the same dummy "Sim" to establish data.
One thing I keep thinking would help is if someone with the first gen 4g version ( single sim ) posts their logs , with sim, without sim and with sim starting up and then removed. Someone posted at one point that if they started up with the sim in and then removed it everything worked fine with just the 3g CDMA radio but if started up without it they had the same issues we do.
---------- Post added at 09:55 PM ---------- Previous post was at 09:47 PM ----------
Here http://forum.xda-developers.com/showthread.php?p=58766201
Looking back at that thread, it seems that we never confirmed whether his phone was actually registering as CDMA and not LTE.
Mine correctly sets the radio technology as CDMA, but CellInfo shows that it is registered on the network as LTE, but without MCC...sorta like a 4g device with no SIM. This may be the root of why data fails, or just a symptom of the problem.
Since we can confirm that the network is in a ready state, perhaps preventing LTE registration may be a solution, but I am not sure there is a way to do that as long as the device thinks there is a SIM.
Related
Guys / Developers / Hackers:
most of users with Samsung windows phone 7 are facing difficulty on setting carrier MMS on their phone in country that are not support by manufacture.
we need to allow us set the MMS manually.
I live is Saudi Arabia and users with HTC Windows Phone can send and receive MMS because HTC Setup connection is configuring their MMS according to their mobile carrier, however, Samsung users here and in some part of the world are not able to setup their MMS.
with all these tools and hack for WP7 available for WP7 now in internet I wonder why people did not came to find a solution for MMS manually.
Please help us…
Samsung, pretty hardware, software aux.
Sent from my Dell Streak 7 using XDA Premium App
Well now i realise this varies from countries... I live in Portugal and here we are not able to use MMS on the TMN carrier because maybe the Connection Setup from HTC is not making the right settings. It works fine on other networks like Vodafone and Optimus, but not on TMN.
Opposite side both Omnia 7 and LG Optimus seem to have no problem with MMS here...
If you flash your phone with an unbranded ROM from samfirmware.com then the network setup application is working fine and you should be able to send/receive MMS.
Mine started working asoon as it was unbranded and downloaded network setup application.
Sent from my OMNIA7 using XDA Windows Phone 7 App
samsung tools?
worked perfectly for me...
skycamefalling said:
If you flash your phone with an unbranded ROM from samfirmware.com then the network setup application is working fine and you should be able to send/receive MMS.
Click to expand...
Click to collapse
sorry but I already flashed my phone to unbranded image and still mms is not working
domineus said:
samsung tools?
worked perfectly for me...
Click to expand...
Click to collapse
I have the tool and it didn't help me
unlocked/unbranded omnia 7 on AT&T. MMS worked after running samsung network profile app
Need the network profile app
hamzie said:
Need the network profile app
Click to expand...
Click to collapse
This doesn't sort all problems - eg I'm in the UK and I use Giffgaff and there are no settings available for their network, network is detected as O2 pre-pay (they run over O2 but obviously will use their own infrastructure for MMS etc.
Data works fine using my manually added APN, just MMS not working.
DatDereX1 said:
unlocked/unbranded omnia 7 on AT&T. MMS worked after running samsung network profile app
Click to expand...
Click to collapse
WHich unbranded load did you use? I have tried I8700XXJK1 and still no luck. Also can't seem to side load Samsung Tools, gives me "cannot find phone" error.
wiredlessguy said:
WHich unbranded load did you use? I have tried I8700XXJK1 and still no luck. Also can't seem to side load Samsung Tools, gives me "cannot find phone" error.
Click to expand...
Click to collapse
I bought mine unbranded and it has XJK1.
You should be able to download Network Profile from the marketplace. Just go to Samsung Zone and it should be listed there.
sim card
I used Samsung Tools and my MMS and Data info was automatically entered.
I should note that I was able to change the MMS and Data profiles stored on the sim card with my old phone, a Nokia E71. I'm guessing that has something to do with it since I turned ADC on.
My carrier is Cincinnati Bell btw, so their info is not listed in the Samsung Network Tools app.
Guys,
No solution until now... I really cannot believe that..
Some smart developer already find a solution for phone backup and language keyboard which it consider more complicate than MMS setting.
What i need to do is to enter the MMS configuration manually or create a file with MMS configuration and deploy it in the phone..
Any developer out there helps us…
What you mean MMS not working? I sent several Pic messages from my new Omnia to several Iphone users, but I never got any reply back.. so could it mean they didnt got my message in first place?? I have to call and ask them now.. I thought MMS worked on Omnia like any other IPhone..
the network app works.
im in aus.. and i had it set to vodafone P and it never worked for me
then i realized... network app .. was using a completely different region's vodafone on my phone
Now i have vodafone AUS set and it works perfectly
i already install network profile app but it dose not help me to set up the MMS.
to make it more clear to you guys, check these snap shoot:
{
"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"
}
in this above picture you see that the profile has been set by default to vox mobile carrier. and by looking at the below picture you can see that i need to setup the network profile to AlJawal KSA but every time i click on it the app show me the little 3dots for long time then it revert back to vox mobile.
if i choose any other carrier it will set it up but of cause MMS will not be working.
note: all HTC WP7 are working fine using connection setup app from HTC
that happened to me
i think....the way i fixed it was
uninstall app
reinstall app
then i took out the sim of the phone..turn it on and either tried setting it then.. or i turned it off agan put it back in and it worked
hamzie said:
that happened to me
i think....the way i fixed it was
uninstall app
reinstall app
then i took out the sim of the phone..turn it on and either tried setting it then.. or i turned it off agan put it back in and it worked
Click to expand...
Click to collapse
Man, it will not work either because Samsung did not encode the mobile carrier setting in their network profile.
As many of users updated to their Nexus 5 to 4.4.2 have pointed out, sometimes a very frustrating bug happens when trying to call someone.
Symptoms: CALL ENDED and call drop when trying to call someone and not being able to receive calls. The problem is persistent and is not fixed by entering airplane mode and sometimes is not fixed even by restarting the phone.
Observations: through simulated tests I've managed to find a probable source of the glitch. When I run the phone in "3G preferred" mode (H or H+ near network indicator) and do frequent WiFi connections, the problem appears and after disabling the WiFi I can not call anyone. THIS DOES NOT HAPPEN AFTER SWITCHING TO 2G PREFERRED under Mobile Networks tab in the settings, as well as choosing GSM only through the service menu by entering *#*#4636*#*# in the dialer.
Choosing a network mode other than 2G ( GSM only) brings the bug back and the phone is unusable as a phone.
Summary: 3G modem drivers are either linked to WiFi, or have an independent network reconnection problem.
I have searched high and low and have seen similar stuff happen to nexus 5 users on this firmware and the issue non existent on 4.4 or 4.4.1. However, I do not have a common "empty signal bars" or "emergency only" symptom with this problem. I am in no mood of rooting the phone and reflashing modem or any part of software (seriously, N5 is the first device I do not want/need to root) nor I will return in to the supplier.
Please, raise awareness on this topic as the phone that is intended to work on LTE does work fully only on 2G (GSM only). What the?
P.S. my mobile network provider is Tele2 Latvia, country - Latvia
I think the problem is either your device or your network operator. Poor 3G signals (network problem) could led to phone call problems since 3G is preferred over 2G (since you are selecting it so).
I don't know how the network works in Latvia, but here in Berlin I never use 4G preferred cause there is 4G only in a few spots around the city, but the 3G works perfect.
Okay, so I did a thing I would never do on a Nexus 5.
In order to rule out software issue on this problem, I flashed stock rom from Google Developers website, the 4.4 one. Then, I selected 3G in mobile settings, and connected to Wi-Fi. I could call and receive calls. However, after I disconnected from the Wi-Fi network, I could not call anyone and received constant CALL ENDED messages a second after dialing a number. No one could reach me either. Then, after about 5 minutes, I could call while on 3G/H network, all of a sudden. Then, when calls were dropping, I connected to WiFi and could call!
What the hell? I flashed 4.4.1 then, same problem and now I am on 4.4.2 again, with the same stuff happening. This does not occur on 2G network.
serzhanja said:
Okay, so I did a thing I would never do on a Nexus 5.
In order to rule out software issue on this problem, I flashed stock rom from Google Developers website, the 4.4 one. Then, I selected 3G in mobile settings, and connected to Wi-Fi. I could call and receive calls. However, after I disconnected from the Wi-Fi network, I could not call anyone and received constant CALL ENDED messages a second after dialing a number. No one could reach me either. Then, after about 5 minutes, I could call while on 3G/H network, all of a sudden. Then, when calls were dropping, I connected to WiFi and could call!
What the hell? I flashed 4.4.1 then, same problem and now I am on 4.4.2 again, with the same stuff happening. This does not occur on 2G network.
Click to expand...
Click to collapse
I've noticed the same issue as well and the only workaround is to put on Airplane Mode for about 5-10 seconds and it will work. Whenever I would put it on Airplane Mode and immediately switch it off it wouldn't work. Try it and you'll be fine. It always works that way for me.
sent from my neXus 5
OuncE718 said:
only workaround is to put on Airplane Mode for about 5-10 seconds and it will work.
Click to expand...
Click to collapse
Thank you for a rapid reply. Unfortunately, this method did not help. The only way I am able to make calls is after quickly connecting to ANY wi-fi network.
Here is a sample video, sorry, had only my gopro at the moment
http://www.youtube.com/watch?v=5CTiw1ZcyVc
serzhanja said:
Thank you for a rapid reply. Unfortunately, this method did not help. The only way I am able to make calls is after quickly connecting to ANY wi-fi network.
Here is a sample video, sorry, had only my gopro at the moment
Click to expand...
Click to collapse
You said the Airplane Mode for 5-10 seconds doesn't work?
Also, I see whenever you switch back and forth from WiFi you do it the slower way. Next time pull down the notification drawer and then press and hold the WiFi icon and it will enable WiFi. Its a few seconds faster doing it that way.
{
"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"
}
sent from my neXus 5
Amazing, thanks! No reason for me to flash paranoid android now haha
Also, you can expand notifications (like the first one is always expanded) by swiping down the notification list, through notification tabs, in case you missed that!
serzhanja said:
Amazing, thanks! No reason for me to flash paranoid android now haha
Also, you can expand notifications (like the first one is always expanded) by swiping down the notification list, through notification tabs, in case you missed that!
Click to expand...
Click to collapse
You're welcome. For some reason I don't understand exactly what you mean when you say " Also, you can expand notifications (like the first one is always expanded) by swiping down the notification list, through notification tabs". Can you make a pic or make a video of what you mean?
sent from my neXus 5
Check this out:
http://youtu.be/RuO3mQHZQXI
serzhanja said:
Check this out:
http://youtu.be/RuO3mQHZQXI
Click to expand...
Click to collapse
Thanks although I've already known about this feature.
sent from my neXus 5
On the Android issue tracker several people seem to have got over the no call problem permanently by simply deactivating 'wifi optimisation' in the settings.
False alarm.
I've performed an experiment, in which I travelled around the city from most busy to less busy districts and the problem appeared in those more busy. I linked this to some problems with mobile network provider (carrier) and, indeed, it looks like all voice channels for 3g network are occupied. It explains different time it takes for the phone to be able to make calls (stop call-dropping).
It is some stuff the provider messed up with. Fixed by switching to another carrier.
I Just flashed my F350L to D838 rom to get a clean experience from all the Korean apps and everything is perfect but no 4g LTE option . The dialer codes do work but its annoying doing that every reboot.
If your device is rooted then install Build Prop Editor from Google Play Store https://play.google.com/store/apps/...editor&pcampaignid=APPU_1_6N8ZVrkTx5FolN-TiAM.
Open it and in the search field type telephony so it will find a line called ro.telephony.default_network. Open that setting and instead of default value (I suppose it's number 8) you can put 10 or 12. Save that change and than reboot your device. You will now have LTE in your network settings. I hope it will work for you...
{
"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"
}
This is what I get now in my phone after changing that setting:
Sent from my LG-D838
I cant seem to root it . Im on 5.0.1
ubabic said:
If your device is rooted then install Build Prop Editor from Google Play Store https://play.google.com/store/apps/...editor&pcampaignid=APPU_1_6N8ZVrkTx5FolN-TiAM.
Open it and in the search field type telephony so it will find a line called ro.telephony.default_network. Open that setting and instead of default value (I suppose it's number 8) you can put 10 or 12. Save that change and than reboot your device. You will now have LTE in your network settings. I hope it will work for you...
This is what I get now in my phone after changing that setting:
Sent from my LG-D838
Click to expand...
Click to collapse
Its not staying its switching from auto to gsm I need it to stay on auto
Go to mobile network settings and set GSM/WCDMA/LTE auto and then activate mobile data option. Exit and don't enter the settings again because if you enter it will change this option to GSM/WCDMA preferred for some unknown reason. 4G is working and you can easily disable and enable mobile data now from notification drawer. But don't enter the settings! I know that this is not permanent solution for this problem. It's anoying to me too. But it's little bit better than typing those dialer codes every time...
Sent from my LG-D838
nicklite97 said:
I Just flashed my F350L to D838 rom to get a clean experience from all the Korean apps and everything is perfect but no 4g LTE option . The dialer codes do work but its annoying doing that every reboot.
Click to expand...
Click to collapse
how to flashed D838 into F350L ?
No 3G/LTE signal. only G..Urgent help please
ubabic said:
Go to mobile network settings and set GSM/WCDMA/LTE auto and then activate mobile data option. Exit and don't enter the settings again because if you enter it will change this option to GSM/WCDMA preferred for some unknown reason. 4G is working and you can easily disable and enable mobile data now from notification drawer. But don't enter the settings! I know that this is not permanent solution for this problem. It's anoying to me too. But it's little bit better than typing those dialer codes every time...
Sent from my LG-D838
Click to expand...
Click to collapse
Hello AndroidBrick, stumbled onto your site while looking for solution. I am Nigerian and I use an LG G Pro (D838, 32GB). Some days back i noticed that i had no network on my phone so I tried inserting another sim into the device and still got the same result but other devices around had network coverage. I changed the network mode to GSM only and got 2G but WCDMA only gives me nothing. I have tried other sims on GSM only mode and got 2G but when i change the mode to WCDMA only, i get nothing at all. Have also put it to GSM/WCDMA auto but keeps giving me just 2G network only. I have even had to downgrade the OS from android 5.0.1 to 4.4.2 as suggested by a friend and still got the same issue(NB: this happened after I received a notification form LG to download an upgrade of about 54MB). Decided to manage it that way as I went on looking for solutions to that problem but with no luck and then the bluetooth and wifi stopped connecting. Please, what should i do? Any other information you would need from me, please I will do all I can to provide to you. Thank you in advance.
---------- Post added at 09:18 AM ---------- Previous post was at 09:10 AM ----------
ubabic said:
Go to mobile network settings and set GSM/WCDMA/LTE auto and then activate mobile data option. Exit and don't enter the settings again because if you enter it will change this option to GSM/WCDMA preferred for some unknown reason. 4G is working and you can easily disable and enable mobile data now from notification drawer. But don't enter the settings! I know that this is not permanent solution for this problem. It's anoying to me too. But it's little bit better than typing those dialer codes every time...
Sent from my LG-D838
Click to expand...
Click to collapse
Hello, I am Nigerian and I use an LG G Pro (D838, 32GB). Some days back i noticed that i had no network on my phone so I tried inserting another sim into the device and still got the same result but other devices around had network coverage. I changed the network mode to GSM only and got 2G but WCDMA only gives me nothing. I have tried other sims on GSM only mode and got 2G but when i change the mode to WCDMA only, i get nothing at all. Have also put it to GSM/WCDMA auto but keeps giving me just 2G network only. I have even had to downgrade the OS from android 5.0.1 to 4.4.2 as suggested by a friend and still got the same issue(NB: this happened after I received a notification form LG to download an upgrade of about 54MB). Decided to manage it that way as I went on looking for solutions to that problem but with no luck and then the bluetooth and wifi stopped connecting. I have checked for solutions to my problem and and all seem to point out that I need my phone's qcn backup file, of which I have not had any luck with. Can you help me out on this one.....Please? You can send me information to [email protected]. Thank you
My F350L and D838 have strong LTE signal but when I tried opening a web site, it does not open and get the message "You are not connected to the internet."
What seems to be the problem and how can I resolve that issue?
TIA
tl;dr - I was able to get my ROG phone 5 working on Verizon in the US. I thought I'd let people know of my success and give a rough guide, but won't be able to support a lot of follow-up questions. Also, if this doesn't work for you, sorry - I'd not go out and buy this phone just on the basis of this post, but just relaying my success and saying that it's confirmed possible.
Rough steps:
Get a ROG 5 from US Store. Others might work, but the model I have is ASUS_1005DC
Add HD Voice and CDMA-Less Provisioning to your account either via Customer Service or VZW Corporate store.
Get a 5G SIM from a Verizon Corporate store
Provision the 5G SIM in something that the VZW system will accept, to get it associated with your account. (iPhones work great).
Set up your ROG 5 (both in the sense of Google, and then dial *#*#3642623344#*#* from your phone app's dialer and then going into settings and turning on WiFi calling and 4G Calling.
Insert (or pop-out-and-then-back-in) your SIM card (Slot1).
Hey all -
I'm posting here (after a bunch of lurking) to let people know that I got my ROG Phone 5 working on Verizon Wireless (VZW)- as far as I can tell everything works (except for Verizon video calling, haven't tried that yet), and I don't really mind since there are significantly more common ways to get this working.
These are the steps *I* went through to get my device working. They might not all be necessary. They might not be all-inclusive. =) I also mess around a lot to get my device up and running, so it's possible I didn't document something. Anyway, enough with the disclaimers:
I bought a ROG 5 directly from this link. (I don't know if any other models work, or any CN models with flashed ROMs work.). I purchased this one because I specifically wanted the one with all the bands in the US, and the Tencent one does not appear to have as many bands - and the specifications on many of the reseller sites are unclear (and flat incorrect). Note that there are many different variants. The part number that I ordered was ZS673KS-16G256G-BK, and the part number on the sticker on the device itself is ASUS_1005DC. My current OS version is 18.0840.2104.49.
Based on poking around here and reddit, I found that people had gotten non-CDMA devices to work on Verizon by having HD Voice and CDMA-less provisioning enabled on their accounts. (OnePlus 7 Pro was the reference device I used). Note that if you do not have BOTH of these enabled, weird stuff may happen. (No phone calls can be made, texts will go into /dev/null, texts might be sent but not received.)
You need a 5G SIM card. I had a 4G one from my previous (non-CDMA device), but just physically transferring did not work. (at least some combination of 4G sim card and not having the right flags provisioning enabled on my account). I just want to a Verizon corporate store on the advice of a Cust Service rep and they were able to help me out.
You need to have them provision the 5G SIM card to a device that the Verizon system will recognize, because if you try to provision the card and tell the VZW system that it's going into the RoG phone 5 (using the IMEI), it will fail horribly. The VZW person put it into an iPhone 12, associated the SIM with my account, and then I put it into my Rog 5 (Slot 1) and both the phone and device were happy.
You need to go through the normal google setup steps, and then type *#*#3642623344#*#* into the phone app to expose the calling via 4G and wifi calling options (and video options). I don't think this survives a reboot.
Enable 4G Calling: Settings->Network & Internet -> Mobile Network -> SIM1 -> 4G Calling. (I also turned on 5G and Auto 5G here, seems to work fine)
Enable WiFi calling: Settings->Network & Internet -> Call -> Wi-Fi Calling
Pop the card into the device (or remove-and-replace) to get the device to renegotiate the settings.
Icons:
{
"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"
}
Carrier Banner:
Phone calls, text, work (send-and-receive via Google Messages.)
This is great news and hopefully can be confirmed by others. I'm currently on the LG V60, but with LG leaving the market, this is about the only phone of interest to me (or perhaps the ROG 6 by the time I need to upgrade?). So far, the only other info I saw on this was a Reddit post that mentioned only getting data working but no voice calls.
Has anybody else tried this?
Thank you for the steps. I finally got the phone and can confirm It is working on Verizon. For me, I just did it with my previous 4G sim with no other steps other than enable the wifi calling. (I may have done the enable HD voice to activate ROG phone 1 on Verizon as an FYI). Either way, calls and text are going through the Verizon sim just fine.
EDIT: So, the phone part works for both inbound and outbound. Text is only outbound right now for me. One question though. If I reboot the phone, then I have to reinsert the sim after it boots in order for the voLTE to work again. Does this happen to you or did it happen? If so any fix?
EDIT(Final) : Everything works fine now. Used oneplus 6t to force verizon set the line properly then popped into the phone. Just need to redo the dial code after a reboot. Thankfully just turning off the sim and turning it back on works instead of having to take out and reinserting.
This is on the ROG phone 5 Ultimate that I purchased form ASUS USA store.
Mr_Mooncatt said:
This is great news and hopefully can be confirmed by others. I'm currently on the LG V60, but with LG leaving the market, this is about the only phone of interest to me (or perhaps the ROG 6 by the time I need to upgrade?). So far, the only other info I saw on this was a Reddit post that mentioned only getting data working but no voice calls.
Click to expand...
Click to collapse
It works. Got it going on my 5s
This does work and even works with the 5S and pro model. The only caveat I've found is that every couple days I won't be getting messages outside of the chat feature in Google messages. So people who don't use that or have iPhones you won't receive their messages unless you remove the sim and put it back in. Not a big deal as every couple days I like to reboot my phone and I just remove the SIM card and put it back in while I'm at it. Then I go into SIM settings and disable then re-enable 4G calling and everything works perfectly
Can confirm these steps work on the RoG Phone 5S Pro (USA model). However 5G seems to not allow incoming texts through (will test that again later) so I have 5G turned off. Sim card removal is not needed though as @TheFerret09 mentioned. I just turn on airplane mode on and off for 5 seconds and the texts will come through. Haven't rebooted in over a week now.
If you are rebooting the phone, you will need to enter the code in step 5 again and disable and reenable 4G. Removing the sim card and putting it back in does the same thing as the code I guess?
morphius88 said:
Can confirm these steps work on the RoG Phone 5S Pro (USA model). However 5G seems to not allow incoming texts through (will test that again later) so I have 5G turned off. Sim card removal is not needed though as @TheFerret09 mentioned. I just turn on airplane mode on and off for 5 seconds and the texts will come through. Haven't rebooted in over a week now.
If you are rebooting the phone, you will need to enter the code in step 5 again and disable and reenable 4G. Removing the sim card and putting it back in does the same thing as the code I guess?
Click to expand...
Click to collapse
After following the steps like putting in the code and re-enabling vo 4g after a reboot, occasionally I can't get messages to come through, but removing the sim did the trick. Next time it happens I'll have to try just putting it in airplane mode to see if that does it. Would be easier for sure.
But I'll randomly just not be getting incoming messages even though the volte icon is visible (for me that means everything is working). So that's when I will remove the sim. Hopefully airplane mode helps. Thanks for the heads up.
TheFerret09 said:
After following the steps like putting in the code and re-enabling vo 4g after a reboot, occasionally I can't get messages to come through, but removing the sim did the trick. Next time it happens I'll have to try just putting it in airplane mode to see if that does it. Would be easier for sure.
But I'll randomly just not be getting incoming messages even though the volte icon is visible (for me that means everything is working). So that's when I will remove the sim. Hopefully airplane mode helps. Thanks for the heads up.
Click to expand...
Click to collapse
Ya see if that does the trick. How is your experience on 5G? I dont have any actual 5G in my area, just the nationwide crap. In my initial tests, the 4G in my area seems to be faster than 5G while connected to a tower that has both.
morphius88 said:
Ya see if that does the trick. How is your experience on 5G? I dont have any actual 5G in my area, just the nationwide crap. In my initial tests, the 4G in my area seems to be faster than 5G while connected to a tower that has both.
Click to expand...
Click to collapse
In my area 5g blows so I don't use it. 4g is far better and faster for the time being so I haven't had a good chance to try it out.
Does anyone know the correct code for the Rog Phone 5s (1005DC)? This one *#*#3642623344#*#* isn't working. Thanks!
bhagiratha said:
Does anyone know the correct code for the Rog Phone 5s (1005DC)? This one *#*#3642623344#*#* isn't working. Thanks!
Click to expand...
Click to collapse
It will appear as if its not working when you type it in but you should get the extra options in "Network & Internet" settings to complete the process.
After weeks of trying to get Verizon to place the phone on their DMD and enable CDMA-Less on my account, they just kept saying that the Asus_1005DC is not fully compartible with their network and will not activate it. That was unfortunate and I had to return the device.
bhagiratha said:
After weeks of trying to get Verizon to place the phone on their DMD and enable CDMA-Less on my account, they just kept saying that the Asus_1005DC is not fully compartible with their network and will not activate it. That was unfortunate and I had to return the device.
Click to expand...
Click to collapse
Well, you weren't supposed to specifically ask them to add this phone on their DMD. You needed to follow the directions above more carefully. You should have placed a 5G sim card in a phone already in their DMD (borrow a friends phone or use your old one) and ask them to provision it as CDMA-less. Then you would transfer the sim into the RoG Phone 5.
morphius88 said:
Well, you weren't supposed to specifically ask them to add this phone on their DMD. You needed to follow the directions above more carefully. You should have placed a 5G sim card in a phone already in their DMD (borrow a friends phone or use your old one) and ask them to provision it as CDMA-less. Then you would transfer the sim into the RoG Phone 5.
Click to expand...
Click to collapse
How was I suppose to know what phones they have on the DMD? The only other phone I had was a verizon LG V60.
bhagiratha said:
How was I suppose to know what phones they have on the DMD? The only other phone I had was a verizon LG V60.
Click to expand...
Click to collapse
I would think its pretty obvious this one would not be on their DMD otherwise this thread would have no reason to exist.
This is an update:
Got an Asus_AI2201_D ROG Phone 6 Pro and tried this guide again. Got the phone working on VZ on day one.
bhagiratha said:
This is an update:
Got an Asus_AI2201_D ROG Phone 6 Pro and tried this guide again. Got the phone working on VZ on day one.
Click to expand...
Click to collapse
Thank you for confirming this
bhagiratha said:
Does anyone know the correct code for the Rog Phone 5s (1005DC)? This one *#*#3642623344#*#* isn't working. Thanks!
Click to expand...
Click to collapse
morphius88 said:
It will appear as if its not working when you type it in but you should get the extra options in "Network & Internet" settings to complete the process.
Click to expand...
Click to collapse
I'm actually seeing this issue as well on my 6D Ultimate - for a while I assumed I was typing it wrong but I've quintuple checked at this point and I never see these extra options in my Network & Internet settings. I enter the code in the phone app and it clears itself out but the settings doesn't change. I've rebooted and checked this process many times. I've tried searching for this and other people use the same code so I'm not sure what's up.
I'm probably just going to give up and switch to Mint though - I live in a city so I'm not crazy worried about losing the coverage.
Edit to add: This is with Visible (which is a fragment of Verizon and the SIM even shows "Verizon" when inserted) so maybe the options don't show up if the SIM isn't like, the "right" SIM? Only thing I can think of.
The options are there. You need to enter on SIM 1 settings.
I have since switched from the phone 5s to the Phone 6 Pro (ASUS_AI2201_F)
Just got this phone and I cannot figure out how to do this. I can only set one as the primary sim.
{
"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"
}
Probably a good idea to delete that picture and post without your phone number
butchieboy said:
Probably a good idea to delete that picture and post without your phone number
Click to expand...
Click to collapse
Yeah just realized that, fixed
I think one of your operators blocked that function. I'd try changing sim slots. Verizon to sim2 slot and t-mobile to sim 1 slot.
This is the menu I have:
I have an unlocked s22 ultra and neither sprint (with tmo sim) or Verizon are giving option for esim at all so I'm stuck with just physical sim slot
rroyy said:
I think one of your operators blocked that function. I'd try changing sim slots. Verizon to sim2 slot and t-mobile to sim 1 slot.
This is the menu I have:
Click to expand...
Click to collapse
Yep... it's correct.... depend of the Simcard Operator....
haifish9999 said:
Yep... it's correct.... depend of the Simcard Operator....
Click to expand...
Click to collapse
Rip well I've tried setting t-mobile as first and then Verizon as first, both do the same thing. This wouldn't make sense. I know that if I run Verizon first, they block the *#0011# so I run the t-mobile sim first
rroyy said:
I think one of your operators blocked that function. I'd try changing sim slots. Verizon to sim2 slot and t-mobile to sim 1 slot.
This is the menu I have:
Click to expand...
Click to collapse
haifish9999 said:
Yep... it's correct.... depend of the Simcard Operator....
Click to expand...
Click to collapse
It's actually a regional thing. For some reason, the U/U1 firmwares use this crappy "Primary SIM" menu instead of the usual SIM options.
eurominican said:
I have an unlocked s22 ultra and neither sprint (with tmo sim) or Verizon are giving option for esim at all so I'm stuck with just physical sim slot
Click to expand...
Click to collapse
Did Verizon say why? I currently have an esim with Verizon on my P6P. The average support rep didn't know how. I had to DM Verizon Support on Twitter to get someone who knew how.
North American models do this for some bizarre reason and I hate it. I had a thread where I mentioned this and never found a fix.
(Mine is a Canadian model)
I just spoke with Samsung support. After first trying to tell me I had to call the carrier, he says it doesn't support two sims at the same time. You have to switch between them. Bringing back to Bestbuy. What an utter disappoontment.
drfundy said:
I just spoke with Samsung support. After first trying to tell me I had to call the carrier, he says it doesn't support two sims at the same time. You have to switch between them. Bringing back to Bestbuy. What an utter disappoontment.
Click to expand...
Click to collapse
As a workaround, if you install the Google dialer app, you can pick which one to dial with by default. Basically I set the sim card that I want to use for data only as the primary, use google dialer to use the other sim card for voice calls.
The only real pain point now is texting. It wants to use my primary for texting by default. Have to remember to switch it if I am texting a new number or an existing one where I have not received a text yet on the new phone.
Really still sucks. I've seen screenshots of it letting you use one for data, another for voice and text. It sucks that they would give us less flexibility. As it is, I am likely going to return this. Between that and the camera (P6P is better), it just isn't worth the price tag.
You can buy the dual SIM international version for HK. It's the same hardware (it's not exynos). And it has the individual control per voice / data / messaging. But you won't get true 5G (you might get fake 5G on TMOB where it says 5G but it's only part of the bands required). I had the s21 ultra version.
I have US version of the phone and have the same problem: it's only primary and non-primary. Primary is responsible for all: calls, messages and data. I chatted with Samsung's support. He said he's going to inform dev team.
Does anybody, somebody, have a new info about this situation?
Is there any workaround?
The biggest problem with messages: to download messages I have to switch to my physical sim of my carrier.
This is one of those dumbass Samsung insane decisions that will make me get rid of this phone.
Coming from Pixel 6, dual sim management is a pain with S22. How I kind of work around this scenario below....not optimal but will do for now.
Data SIM: T-Mobile esim (Primary)
Call/Text: ATT physical sim
Text messages: I used native Samsung Messages app (Google Messages app requires you to switch on MMS, annoying)
Call: I went into Contacts, edit a short list of my favorite numbers to default to ATT. This set all calls to ATT for those contacts.
vboyz104 said:
Coming from Pixel 6, dual sim management is a pain with S22. How I kind of work around this scenario below....not optimal but will do for now.
Data SIM: T-Mobile esim (Primary)
Call/Text: ATT physical sim
Text messages: I used native Samsung Messages app (Google Messages app requires you to switch on MMS, annoying)
Call: I went into Contacts, edit a short list of my favorite numbers to default to ATT. This set all calls to ATT for those contacts.
Click to expand...
Click to collapse
Question for you. Can you receive calls and texts destined for your ATT physical SIM while having your primary sim set to the eSIM? This is my biggest stress. I dont want to be out of touch just because I'm using an alternate data SIM
SpeedyOyster said:
Question for you. Can you receive calls and texts destined for your ATT physical SIM while having your primary sim set to the eSIM? This is my biggest stress. I dont want to be out of touch just because I'm using an alternate data SIM
Click to expand...
Click to collapse
YES !
you can receive calls and texts from both numbers !
when you make a call, it will give you a prompt to select sim1 or sim2 (esim).
and when you wanna sent a text, it has a sim1 icon on the texting area, if you want to send with the phone number on sim2 (esim), you just switch to sim2 icon.
i on android 13 beta with unlocked s22 ultra U1