Skip to main content

Google Pixel No Wifi, No cell service like stuck in airplane mode issue


I bought a Pixel 3 about 7-8 months back and was really happy about it. Ran smoothly and everything was perfect until I came across this issue.

I'm writing this post because I couldn't find any help online much not even from Google support. So anybody else also having this issue, hope it will be helpful for you.

Issue:

No connectivity at all. No Wifi: even if you turn on/off Wifi several time, it doesn't search or connect.
No cell service: No reception, but the SIM card works if you try it with another phone.
Says the phone is in airplane mode and no radio when you try to make a call.


What happened to me and what I did

It happened a couple of times for me and the very first time, I tried network reset but it didn't work.

Settings > System > Advanced > Reset options > WiFi, mobile & Bluetooth

Then tried factory reset (wiped out all user data)
Still didn't work.

Gave up my hopes on that and thought of switching to another phone.
After 3-4 hours, found it is working again like nothing happened.

It worked great without any issues for about 2 months. Then again one time I ran out battery and it switched off itself. After charging it for sometime switched it on again. Then the same issue. No wifi, no cell service.

Tried everything again, Network reset, factory reset and even hard reset. Nothing. Finally I even downgraded the factory default android version (back to 9, earlier I had it upgraded to version 10). Nothing worked.

Then reached out to Google support.


What you should do to resolve this

I'll write the steps in the order.

1. Restart your phone
If it is a temporary glitch, it will be resolved.

2. Try network reset
Settings > System > Advanced > Reset options > WiFi, mobile & Bluetooth
This might fix your phone if it is config issue or something to do with your wifi etc.

If not,
3. Leave it aside for several hours. 24 hours max.
If it is the same issue like I had, probably it'll start to work by its own after some time.

If not,
4. Drain your phone's battery until it shuts off by itself (I figured the best way to drain it is play a video in a loop. If you don't have a video just record about a minute and let it play).
After it completely drained and when you can't start it back with the power button. Charge it in power off until fully charged and switch it on.
Hopefully it will work. If it doesn't again leave it idle for several hours.

If not,
5. Try factory reset
It should fix most of the common issues.



6. If it doesn't contact google support for pixel from the below link.
https://support.google.com/pixelphone/contact/community#

They should guide you to get you a replacement assuming it was purchased from an authorized store.

7. If you are not in a country which covers by Google support, then nothing much you can do. So the last option downgrade back to Android 9. Wouldn't recommend this if you don't know how to. You'll need some technical knowledge and some experience with android development.

8. Try with your local repair place and nothing much you can do after this. Only chance is going back to the authorized seller and try to get a replacement.



Moral of the story: 
Try to buy a product where you have support/warranty claim is available in your country, unless you really really need a Pixel phone.




References:
Pixel community forum:  https://support.google.com/pixelphone/thread/45120511
Google Factory Images:  https://developers.google.com/android/images







Comments

  1. this is a sad story but i did everything you did the downgrade to 9, then to 11, then erase everything nothing work.. moral of the story
    DO NOT BUY PIXELS

    thanks for sharing

    ReplyDelete

Post a Comment

Popular posts from this blog

VLC skins

It's been a while from my first blog post, so today I thought to make a blog post about skins in VLC player. I think you all are familiar with VLC player if not, here's the link for the website www.videolan.org/vlc/index.htm l In brief, VLC player is a free and opensource player that can play almost all the types of media formats. Even though it is a such a nice player, it looks kind of old and rusty, like the windows classic look. But you can make it prettier by just adding some new skins to it.  You can download skins for the player from here http://www.videolan.org/vlc/skins.php Then place the downloaded skin file (.vlt file) in the " skin " folder in the installation directory.           eg:- in windows:    C:\Program Files\VideoLAN\VLC\skins           or in linux systems:  ~/.local/share/vlc/skins Then, open the VLC player and go to the preferences. ...

How to set terminal title in Ubuntu 18.04 LTS

In older Ubuntu versions, you could have just right-clicked on the Ubuntu Terminal window's title bar and set any title you would like. But unfortunately after Ubuntu 18.04 LTS this feature is gone. I used to love this feature because I'm multiple tabs in the single terminal window kind of a guy. I usually like to work in multiple named terminal tabs like below. By default, in newer Ubuntu version, it is showing just the current directory. Let's see how we can do this. Ubuntu prompt In ubuntu's Bash, there's an environment variable $PS1 which is responsible for the details that the command line prompts. You'll be able to echo this and see what's inside it. If I echo it it will print something like this. echo $PS1 \[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ If you really want to understand what this means, you can refer this page .  Updating the termina...

Java, how to create a list with a single element

 I wanted to create a Java List with a single element. Yet, I wanted to add more elements later. So, I was looking for a couple of ways to do this. So far there are multiple elegant ways to create a list with a single element with a one-liner. Not so much for a modifiable list though. Here's what I gathered so far. Followings are a few ways of creating a list with strictly a single entry. Can't add more elements. 1. Collections.singletonList() This returns an immutable list that cannot be modified or add more elements. // An immutable list containing only the specified object. List<String> oneEntryList = Collections. singletonList ( "one" ) ; oneEntryList.add( "two" ) ; // throws UnsupportedOperationException 2.  Arrays.asList() This returns a fixed-size list consisting of the number of elements provided as arguments. The number of elements provided would be an array hence the size is fixed to the length of the array. // Returns a fixed-size list List...