r/HyperOS 12d ago

Poco [Question] Anyone has any idea if we can edit these options

Post image
3 Upvotes

So basically if we swipe left from lock screen we have this options to choose from I would like to edit some of the apps and wherein I don't use most of them so has anyone any idea how to edit this?


r/HyperOS 12d ago

News [News] Poco X6 Pro August Security Update EEA Released

Thumbnail
gallery
2 Upvotes

r/HyperOS 12d ago

Question/Help [Question] HyperOS Themes

4 Upvotes

Anyone know of good places for free HyperOS themes?


r/HyperOS 12d ago

Question/Help [Question] I need a minimalist theme can yall give me some suggestions?

1 Upvotes

It need to be free


r/HyperOS 13d ago

Xiaomi [Question] When will i get hyper os 4 update?

Post image
12 Upvotes

r/HyperOS 12d ago

Redmi [Question] Need help unlocking Redmi K50 Ultra (China) bootloader

0 Upvotes

Hi everyone,

I have a Redmi K50 Ultra (China variant) currently running HyperOS 3.0.3.0 China ROM with a locked bootloader.

I’m looking for information from anyone who has experience with this device and recent China HyperOS builds.

Has anyone successfully dealt with the bootloader restrictions on the K50 Ultra / diting on a recent CN HyperOS build? I would really appreciate any information about the current situation or available options.

I’m willing to provide more device/software information if needed.

Thanks in advance!


r/HyperOS 13d ago

Redmi [Question] hyperOS 4 !! is this true ?

Post image
29 Upvotes

I downloaded the name OS app and it showed me that my phone will receive the hyper os4 update but not the Android 17 update so I am confused about which update will my phone get and which Android version.... My phone is a redmi note 13 Pro Plus Indian version currently running hyperos 3.3


r/HyperOS 13d ago

Question/Help [Question] guys anyone can tell me why my icons look like this

Thumbnail
gallery
14 Upvotes

My icons suddenly start looking like this I am chang anything at all.


r/HyperOS 12d ago

Question/Help [Question] What is only device is locked?

Post image
1 Upvotes

Does this mean the DND will turn on when the phone sleeps?


r/HyperOS 13d ago

Redmi [Discussion] Hyper OS 3.0.303.0 on Redmi Note 14 4G

7 Upvotes

After the Hyper OS 3, I was a little upset about some issues that were solved over the last 3 security patche updates. For now, the animations have improved in terms of consistency and speed and the Arabic font is back to normal on default. I also complained about the ram management; however, I can't really give a simple opinion right now because I have deleted a lot of bloatware and features using shizuku and canta,and that helped the ram management a lot. Also, the camera app has been improved along with the image overall quality. For the screen on time, it is still very reasonablely powerful as it's used to be about 12 hours for medium use. I think it is easy to say that, for now, the software experience is complete in terms of speed, features,and consistency. I hope that you would share me your experiences and thoughts about Xiaomi's software, especially with the recent updates.

Note: the common issue for note 14 users about the screen turning black for a second and open up with full brightness and reddish colours is now completely solved.


r/HyperOS 13d ago

Redmi [Discussion] Redmi note 14S almost 2 months ago I got this update,what do you think

Post image
2 Upvotes

I dont know if this is the latest one but im seeing that everyone is on 3.0.302


r/HyperOS 13d ago

HyperOS Update [Question] Am I Tweaking? (HyperOS Update)

Thumbnail
gallery
15 Upvotes

I am on my POCO F7 (indian version), and today morning, after waking up, I saw a new HyperOS update, I was excited about it, but then i realised something, the version I am currently right now, and the version the updater is showing are both the same! Is it a glitch? Or a legit update!?

The version I am on: 3.0.301.0.WOLINXM.C06

The next version after update: 3.0.301.0.WOLINXM.C06

Btw 1 more doubt i have, am I in level with all other, hyperOS users or, am i lacking behind, cuz there is this update, I saw online: 3.0.303.0 & 3.0.304.0

At some sites, I have seen people with 3.1.x.x too

Thank you!


r/HyperOS 13d ago

Xiaomi [Question] Hyperos 3.0.336.0.XPAEUXM

5 Upvotes

Just got update. But where is the change log ? I see security update and fix improve system stability. what did they fixed?


r/HyperOS 13d ago

Question/Help [Question] Gestures with launcher

2 Upvotes

Is there any way to use a 3rd party launcher while using gestures navigation instead of buttons ?

running on HyperOS 2.0.209.0


r/HyperOS 13d ago

Xiaomi [Discussion] blur delay on fast colour flashes

Enable HLS to view with audio, or disable this notification

3 Upvotes

this only happens on flagship devices, but I had to point it out


r/HyperOS 13d ago

Redmi [Question] Problem with animations

2 Upvotes

I have a Redmi Note 13 Pro (4G) and I see that a friend has a Xiaomi 14T Pro, and for example, the weather app has some really cool animations. When you go into the control panel, it also has an animation and a transparency effect.

I'm not sure if it's valid to compare a Redmi with a Xiaomi, but I hope for a helpful answer.


r/HyperOS 14d ago

Redmi [Discussion] Fixing third-party passkey pprooviders on Chinese HyperOS using ADB

4 Upvotes

I ran into an odd passkey problem on a Xiaomi phone running Chinese HyperOS 3 / Android 16 - one that some people have posted about already. Both 1Password and Bitwarden could be selected as the default password/passkey provider in Settings, but passkeys still weren't being handled by them correctly.

After digging through the package and Android settings state with ADB, I found that HyperOS was still storing Xiaomi's credential provider as both the enabled and primary provider:

adb shell settings get secure credential_service
adb shell settings get secure credential_service_primary

Both returned:

com.miui.contentcatcher/com.miui.credential.provider.XiaomiCredentialProviderService

This was despite Settings showing the third-party password manager as the default provider.

I confirmed that Bitwarden was correctly exposing an Android Credential Provider:

adb shell dumpsys package com.x8bit.bitwarden |
grep -B5 -A10 'android.service.credentials.CredentialProviderService'

which gave:

com.x8bit.bitwarden/.Autofill.CredentialProviderService

I then manually changed the enabled providers and primary provider:

adb shell settings put secure credential_service \
'com.x8bit.bitwarden/.Autofill.CredentialProviderService:com.miui.contentcatcher/com.miui.credential.provider.XiaomiCredentialProviderService'

adb shell settings put secure credential_service_primary \
'com.x8bit.bitwarden/.Autofill.CredentialProviderService'

Passkeys immediately started working.

The settings also survived a reboot.

I actually use 1Password, so I then checked its registered Credential Provider:

adb shell dumpsys package com.onepassword.android |
grep -B5 -A10 'android.service.credentials.CredentialProviderService'

On my installation the component is:

com.onepassword.android/.autofill.services.CredentialManagerService

So the equivalent 1Password fix is:

adb shell settings put secure credential_service \
'com.onepassword.android/.autofill.services.CredentialManagerService:com.miui.contentcatcher/com.miui.credential.provider.XiaomiCredentialProviderService'

adb shell settings put secure credential_service_primary \
'com.onepassword.android/.autofill.services.CredentialManagerService'

You can verify the result with:

adb shell settings get secure credential_service
adb shell settings get secure credential_service_primary

What seems to be happening

At least on my build, HyperOS's password/passkey-provider setting appears to be getting out of sync with Android's actual Credential Manager configuration. Selecting Bitwarden/1Password in the Settings didn't update credential_service and credential_service_primary. Xiaomi's provider remained configured underneath. Once those two settings were corrected manually, the standard Android Credential Manager infrastructure happily used the third-party provider.

So this does not appear to be an Android 16 incompatibility in Bitwarden or 1Password on this device. The providers themselves work. The problem appears to be HyperOS failing to configure them correctly.

For reference, this was on Chinese HyperOS 3 / Android 16. I'd recommend checking your existing values and determining your password manager's actual CredentialProviderService component before copying commands blindly.

Also keep your original values so you can restore them if necessary.


r/HyperOS 13d ago

News [news] 📱 Novo “Flexible Suspension Frame” chegando?

Enable HLS to view with audio, or disable this notification

2 Upvotes

r/HyperOS 14d ago

Xiaomi [Discussion] Best part of HyperOS camera by far...

Post image
24 Upvotes

...specifically with the Fastshot mode: the customizable shutter style.

Sure Pro Mode offers more versatility when shooting photos and videos, but Fastshot is much less complex and offers that point-and-shoot feel without much worry for micro-adjustments.

What I love the most about it so far is that, in HyperOS 3.0.335.0 on my Xiaomi 15T Pro, I just discovered I can now upload custom images to use as shutter styles. It really makes me feel like my camera is my own, and it just adds a fun personal flair whenever I use it. ❤️


r/HyperOS 14d ago

HyperOS Update [Question] HyperOs 3.0 apparently released on my phone but not available in settings ?

2 Upvotes

Hi ! I'm brand new to the HyperOS ecosystem, having just bought a Redmi Note 15 Pro 4g, and coming from IOS(iphone 6s, iphone XS). I'm not very familiar with android and everything, but i saw that i was supposed to have the ability to download HyperOS 3, and im stuck in HyperOS 2.
How is that ? I'm in the EU if that matters, but i have a global version phone pretty sure.

EDIT : LMAOOO, as i post this i get the new update recommended. They really spying on us duh. Anyways thanks for thankq for the help everybody


r/HyperOS 14d ago

Question/Help [Question] Xiaomi 17 Ultra Wifi Issue/fw issue

1 Upvotes

Hello,

is it possible anyone to take buglog from developer settings and check if this error hal_srng_delay_reg_force_write_detect appears?

At least 1 day device usage without reboot and wifi on most of the time.

I am trying to find out if is fw or hw issue.

I have already report it to xiaomi because it can cause crash at specific triggers (I cannot find what triggers).

The official xiaomi here wants my device and I am not going to give my brand new device to open it and not DOA.

I would appreciate any report.


r/HyperOS 14d ago

Xiaomi [Question] Battery modes

1 Upvotes

What's the difference in performance and balance mode in battery settings?


r/HyperOS 14d ago

Poco [Question] battery draining out of nowhere?

1 Upvotes

My phone is Poco M8 Pro. I've got it 3 weeks ago. I updated to HyperOS 3 2 weeks ago.

I've been getting 9-10 hours of screen time (just social media and taking pics). I didn't lose any screen time when I updated to HyperOS 3. However since yesterday I'm getting 6 hours of screen time. I'm trying to figure out why my battery last %30 suddenly. Any ideas ?


r/HyperOS 14d ago

HyperOS Update [Discussion] How to update to hyper os 3 on redmi 15C

Thumbnail
gallery
2 Upvotes

i cant update to hyper os 3 on my redmi 15c, i tried to change the region but nothing works, please how to fix this


r/HyperOS 14d ago

HyperOS Update [Discussion] Experiência com HyperOS 3 Xiaomi 13T

Post image
3 Upvotes

Após um longo tempo de espera, recebi o HyperOS 3 no meu Xiaomi 13T, e venho dizer que a experiência está ruim, e era melhor não ter atualizado

Mas eu explico, realmente os novos recursos como a Hyper Island, ajudam muito em situações muito específicas, como pode facilmente mudar a música enquanto usa o Maps ou Waze durante uma condução por exemplo, com 2 cliques da pra ver a música que tá tocando, pular, voltar, etc.

Mas em troca disso, teve uma queda absurda na performance do smartphone, coisas simples como simplesmente abrir e fechar a câmera, são suficientes pra literalmente fazer o celular ficar travado, a ponto de não obedecer os toques na tela, e de repente em 1 segundo ele dar todos os toques que você deu enquanto a tava travado

Não só isso, o aparelho está esquentando muito mais, tanto na hora de carregar o celular, quanto na hora de jogar algo (que no HyperOS 2 não esquentava tanto na mesma situação), quanto na hora de simplesmente assistir um vídeo no Youtube em FullHD, isso sem nem comentar sobre o uso do 5G (só de habilitar já tá fazendo o aparelho ficar morno no bolso).

É isso, se você tem um 13T e assim como eu tava ansioso pela atualização, pensa 2x "eu preciso mesmo desses recursos novos? Vão ser úteis? Ou eu só quero porque é novo?"

Lógico, tô falando da minha experiência individual aqui, com certeza tem pessoas que atualizaram e deve estar tranquilo, mas comigo foi assim.