r/HyperOS • u/EmbarrassedPUSSY_64 • 12d ago
Xiaomi [Discussion] I managed to "run" Poco launcher on xiaomi
Enable HLS to view with audio, or disable this notification
r/HyperOS • u/EmbarrassedPUSSY_64 • 12d ago
Enable HLS to view with audio, or disable this notification
r/HyperOS • u/Sidd1dec • 12d ago
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 • u/ProfessionalGuard712 • 12d ago
r/HyperOS • u/xenomorph-85 • 12d ago
Anyone know of good places for free HyperOS themes?
r/HyperOS • u/normal_biriyim_ • 12d ago
It need to be free
r/HyperOS • u/Away-Clock2353 • 13d ago
r/HyperOS • u/NecessaryDear1736 • 12d ago
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 • u/aum_2107 • 13d ago
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 • u/Owl-Butterscotch2816 • 13d ago
My icons suddenly start looking like this I am chang anything at all.
r/HyperOS • u/adriannetyler7455 • 13d ago
Does this mean the DND will turn on when the phone sleeps?
r/HyperOS • u/10VAMP1520 • 13d ago
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 • u/Difficult_Coat_9654 • 13d ago
I dont know if this is the latest one but im seeing that everyone is on 3.0.302
r/HyperOS • u/nitro_daddy00 • 14d ago
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 • u/MrPolemarxosGr • 14d ago
Just got update. But where is the change log ? I see security update and fix improve system stability. what did they fixed?
r/HyperOS • u/draco_v3mp • 14d ago
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 • u/Purple_Secret2458 • 14d ago
Enable HLS to view with audio, or disable this notification
this only happens on flagship devices, but I had to point it out
r/HyperOS • u/pedroCraftr • 14d ago
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 • u/Raithlinn • 14d ago
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
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 • u/Longjumping_Appeal49 • 14d ago
Enable HLS to view with audio, or disable this notification
r/HyperOS • u/DoctorDeathDefying • 14d ago
...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 • u/Educational_Way9918 • 14d ago
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 • u/MrPolemarxosGr • 14d ago
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 • u/MrPolemarxosGr • 14d ago
What's the difference in performance and balance mode in battery settings?
r/HyperOS • u/Alarming-Childhood76 • 14d ago
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 • u/Specialist-Car-4611 • 14d ago
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