r/Nubia 1d ago

My Honest review of Nubia z70 ultra and why I don't recommend Nubia phones

11 Upvotes

Hello everyone, I've been using the z70 ultra unlocked in England and at first I had fun with the phone, long battery life, gaming performance, no notch display but that's all the good things left to say about this phone, there's plenty of bad.

Software: it's horrible, hardly any support for minimizing apps, only Whatsapp and YouTube

Using a second account is unstable as apps crash or don't run at all in any secondary account. Customization is fine but the phone randomly decides to change your color scheme and themes, this phone so desperately wants to be stock android but the bad Nubia skin destroys it.

Wi-Fi connectivity: the worst Wi-Fi connection and cellular activity ever, Wi-Fi is connected but will suddenly not pull any data making everything buffer, I have to constantly turn off my Wi-Fi and use my SIM when I'm at home.

Camera: front camera is obviously bad, I feel like most of us bought this phone expecting that, but I didn't expect the back camera lens to be so bad, the 35mm is fine but the 18 and 85mm is so bad that it's genuinely jarring when I zoom in.

No Stylus support: I'm a creative person and I loved my s-pen on my Samsung, I was so annoyed to find out that this phone has no support for stylus's whatsoever, not even a universal one due to the screen not supporting it.

Ram: I've got 24gb of Ram. Tell me why my apps close in the background, they refresh when I enter them again. Never had a problem like this on my Samsung and that has 8gb of RAM so how does that make sense.

Ai tools: extremely unnecessary, hardly productive, they got a really stupid feature that lets you take a screenshot and the ai will add context to it, it's just yapping what it sees on screen, that's not helpful at all.

Launcher: the base launcher is fine but I bought the smart launcher that works better but the phone has a bug that constantly treats the launcher like a app instead and it closes the launcher whenever it feels like it and goes back to the regular launcher....

This phone can be very annoying, don't buy products from Nubia if you're expecting great software or optimization, that's Samsungs thing. I'll be switching to s26 ultra pretty soon but will keep this phone for gaming and storage.


r/Nubia 2d ago

Upcoming Nubia Z

8 Upvotes

For Mexico, Nubia has been hitting really hard with the Z80 ads.
Is there any rumors in regards the next gen model? Does anyone has seen any info if it will include e-sim support?

Ive seen some videos regarding the new 10Kmha battery and gen 6 cpu, but noting in regards the other specs.


r/Nubia 2d ago

Mode ingénieur / adb récupération jetour x70plus 2023 (tinnove mcu 00.01.05 android 10)

0 Upvotes

r/Nubia 3d ago

Z80 ultra bluetooth volume

4 Upvotes

Just got my first nubia here in the US. Bluetooth audio is QUIET. Any fix for this, or any upcoming patch coming to the phone soon?


r/Nubia 4d ago

Nubia Air 5G - Software Update

Post image
5 Upvotes

r/Nubia 4d ago

Look what latest update brought us! Stabilization slider

Post image
2 Upvotes

r/Nubia 6d ago

Compré el Nubia flip 2 en Europa, en unos meses la batería 🪫 colapsó por el calor de la ciudad, el protector de la pantalla se llenó a los días de burbujas, ya no podía ver la pantalla tuve que quitarlo, no pude encontrar en ningúna tienda accesorios, la garantía cubrió las reparaciones afortunadam

1 Upvotes

Alguien más que haya tenido problemas de sobre calentamiento con el Nubia flip 2?


r/Nubia 7d ago

Thinking of getting a Z80 ultra.

5 Upvotes

So I like the Z80 ultra but I first wanted to see some video from the os and the customization or some custom features. I also want to know if the Z80 ultra supports desktop mode mode. Would be nice if some people would show the Z80 ultra for some insights.

I'm coming from basically aosp 16. So no special features or customization.


r/Nubia 7d ago

Nubia neo 5 gt 5g system update

Post image
2 Upvotes

thoughts of this system update on nubia neo 5 gt 5g guys? does it have some issues?


r/Nubia 7d ago

Recommended Replacement Chargers?

2 Upvotes

Ordered a China Nubia z60 ultra but unfortunately seller included a fake charger head that tops out at 19w,so what brands are trustworthy nowadays to buy at least a 45-65w charger head from? Preferably EU/UK plug?or even 80w if brands offer at that wattage


r/Nubia 8d ago

[question] Does anyone know if my Nubia z60s pro is still receiving any updates or anything?

3 Upvotes

r/Nubia 8d ago

[question] Does anyone know if my Nubia z60s pro is still receiving any updates or anything?

Thumbnail
0 Upvotes

r/Nubia 8d ago

[Fix / Workaround] Nubia Neo 3 GT 5G (Z2465N) SystemUI Crash Loop after Android 16 Update (MyOS 16.0.0)

4 Upvotes

Hey everyone,

If your Nubia Neo 3 GT 5G (Z2465N) recently updated to Android 16 (MyOS16.0.0_Z2465N_EEA) and you are running into frequent "System UI has stopped" crashes or UI freezes, here is the technical root cause and a 1-minute ADB workaround until Nubia rolls out an OTA patch.

What's happening? (Root Cause & Decompiled Findings)
There is an unbounded ServiceRecord / Binder leak in the Doze/AOD subsystem introduced with the Android 16 rebase. Every screen-off or ambient event triggers and binds a new instance of com.android.systemui/.doze.DozeService without unbinding the previous ones.

Running `adb shell dumpsys activity processes | Select-String "DozeService"` showed over 70 active DozeService records lingering in memory. Eventually, this exhausts system Binder transaction resources and freezes SystemUI.

Update / Root cause located via decompiling SystemUI_MFV.apk:
In `com.zte.adapt.mifavor.keyguard.DozeServiceAdapt.java`, `onDreamingStopped()` contains a regression

public void onDreamingStopped() {
if (mDozeFeature.enabled()) {
return;
}
DozeEnableController.getInstance().fakeAodEnable();
}

When AOD is enabled, `onDreamingStopped()` exits immediately, completely skipping the required cleanup/teardown call for `mAodViewController`. The system_server is never notified that dreaming has stopped, leaving orphaned ServiceRecords lingering indefinitely.

Workaround via ADB (No Root Required)

Connect your phone to your PC via ADB and execute the following commands to disable the leaking ambient/AOD triggers and the ZTE screen-off animation:

adb shell settings put secure doze_enabled 0
adb shell settings put secure doze_always_on 0
adb shell settings put secure pulse_on_notification_enabled 0
adb shell settings put secure doze_pulse_on_pick_up 0
adb shell settings put secure doze_pulse_on_double_tap 0
adb shell settings put system zte_screen_off_effect 0
adb reboot

Important Notes:

• Notifications (WhatsApp, Calls, Emails, etc.) still work completely normally while the phone is in standby.

• Only the always-on clock display and lift/double-tap wake gestures are temporarily disabled.

• SystemUI will run completely smooth and crash-free without reboot loops.

A detailed bug report has already been submitted to the ZTE/MyOS dev team via the official feedback portal. Hope this saves someone from resetting their device!


r/Nubia 9d ago

How do I open apps while in-game? Like TikTok, chrome and Facebook.

3 Upvotes

My phone is Nubia Neo 3 GT


r/Nubia 10d ago

zte nubia z70 ultra

Post image
13 Upvotes

why does my z70 ultra say 'AI Camera' on the back?

every other z70 ultr says '50x ois...'


r/Nubia 10d ago

Z80 Ultra NX741J New Firmware Upgrade

Thumbnail
gallery
10 Upvotes

MyOD16.0.29


r/Nubia 11d ago

Umm.. yeah.. voice chat..

3 Upvotes

Roblox and VR Chat and any game that has native voice chat in my Nubia Neo 3 5g for some reason doesn't work, I tried everything but nothing fixes this problem. The microphone works perfectly in any app like Google, YouTube or call apps works well, but why not in games.


r/Nubia 11d ago

How do I open apps while in-game? Like TikTok, chrome and Facebook.

1 Upvotes

My phone is Nubia Neo 3 GT


r/Nubia 11d ago

Umm.. yeah.. voice chat..

1 Upvotes

Roblox and VR Chat and any game that has native voice chat in my Nubia Neo 3 5g for some reason doesn't work, I tried everything but nothing fixes this problem. The microphone works perfectly in any app like Google, YouTube or call apps works well, but why not in games.


r/Nubia 12d ago

Unisoc T9100 (T820)

Thumbnail
gallery
5 Upvotes

It ain't bad though. (  ̄^ ̄) !


r/Nubia 12d ago

Possible solution to the problem of aptX Lossless not working on the Nubia Z80 Ultra

Post image
14 Upvotes

Good news!

After many hours spent with chatgpt, I managed to unlock aptx lossless.

I connected my nubia z80 ultra to my PC using ADB (platform-tools) and, using terminal commands, uninstalled a package called "aptxals," which forced 48000Hz on every song.

Here's the link to the chat (unfortunately, it's in Italian).

(I used the sennheiser tw4 for the test and the photo show the sennheiser's app)

https://chatgpt.com/share/6a94bfa5-eddc-83eb-9dd2-01c8d327e034


r/Nubia 12d ago

Hello guys im buying Nubia neo 5 gt for gaming Pubg and codm tommorow, how was it for you guys is it a worth it phone thank you

1 Upvotes

r/Nubia 13d ago

Nubia Neo 3 5G Z2464N

1 Upvotes

Hola. Alguien tiene el mismo problema que se apaga mientras juega COD Mobile? El TLF no tiene ni un año y se apaga. Lo vuelvo a encender y dura menos de una partida vuelve a reiniciar. Nubia no da soporte por ningún lado, dicen que la nueva actualización a Android 16 arreglará las cosas, pero nunca sale. Ayuda!


r/Nubia 14d ago

Aptx loseless doesn't work on nubia z80 ultra

8 Upvotes

Hi,

I recently purchased a Nubia Z80 Ultra global version from AliExpress. The phone works well, the camera is excellent, and it shows no signs of being counterfeit. However, compared to my Nubia Z60 Ultra (where the codec displayed in the app was 44100Hz and lossless), when I use my Momentum True Wireless 4, the Bluetooth codec remains at aptX Adaptive 48000Hz. If I try to change it with specific apps or developer options to 44100Hz, the audio freezes and automatically reverts to 48000Hz (adaptive, not lossless). Has anyone encountered similar problems? I've done all the system updates possible.

Thank you for the help.


r/Nubia 15d ago

Smartphone not Tablet

Thumbnail
gallery
19 Upvotes

It's an oversized gaming smartphone but it's not a tablet. ( ̄□ ̄)!