Search results


  1. Mikanoshi

    Invalid Notification priority

    Is notification priority even there on MIUI 12.5? Looks like Xiaomi releases ROMs in the middle of transitioning from old Importance option to something new.
  2. Mikanoshi

    Invalid Notification priority

    WTF is Xiaomi doing? Stable MIUI 12.0.2.0-12.0.8.0 no longer have an unique collapsed view for notifications of minimal importance (that colorless with only 1 row), it's a regular truncated notification now. And it's also hidden on lockscreen automatically! Xiaomi simply removed the condition...
  3. Mikanoshi

    MIUI 11.2 20.3.26 - Last MIUI 11

    https://xiaomi.eu/community/threads/miui-11-stable-11-0-2-0-mix2s-messages-app-service-not-working.52633/#post-507245
  4. Mikanoshi

    MIUI 11.2 20.3.26 - Last MIUI 11

    It's never necessary, Xiaomi won't force you to format your device to update from any lower version to any higher version. You are only required to format if you change ROMs on an encrypted device, because ROM from another devs might not understand the current encryption. I'm on xiaomi.eu since...
  5. Mikanoshi

    MIUI 11.2 20.3.26 - Last MIUI 11

    Stable is still 11.0, I think they only update android security patch now, so no changes there at all. 11.2 is not ready to go stable with all the bugs, and rumors are that they are working on 12 now.
  6. Mikanoshi

    MIUI 11.2 20.3.26 - Last MIUI 11

    One of my friends in China told me that it's not a good idea to get COVID-19 now, they expect a new model COVID-20 in September. There will also be COVID-20 Pro and COVID-20 Pro Plus, maybe even a budget model COVID-20 Lite.
  7. Mikanoshi

    MIUI 11.2 20.3.26 - Last MIUI 11

    They should finish 11 first... it was released like yesterday. All just to keep people excited for the new things, doesn't matter if these things come half ready and then never fully completed.
  8. Mikanoshi

    MIUI 11.2 20.3.26 - Last MIUI 11

    You suppose to monitor CPU usage and report to devs, not go back to stable :)
  9. Mikanoshi

    MIUI 11.2 20.3.26 - Last MIUI 11

    If you use Xposed Framework there is a mod to fix that.
  10. Mikanoshi

    MIUI 11.2 20.3.26 - Last MIUI 11

    build.prop won't work, turns out thoughtful devs enable it forcefully on system start. You can disable it "permanently" like this: settings put system smart_dark_enable 0 setprop debug.hwui.force_dark false But as soon as you open Dark mode page in Settings it will reset smart_dark_enable to 1...
  11. Mikanoshi

    MIUI 11.2 20.3.26 - Last MIUI 11

    That's why I wrote "Terminal". Run su before the command. In build.prop: debug.hwui.force_dark=false
  12. Mikanoshi

    MIUI 11.2 20.3.26 - Last MIUI 11

    Sure. Terminal/ADB shell: setprop debug.hwui.force_dark false It will revert back to true upon reboot though. Maybe putting it to build.prop can make it permanent. I also have a problem with black status bar in launcher with dark wallpaper, it thinks color #33383D is a light one :facepalm: It's...
  13. Mikanoshi

    MIUI 11 MIUI 11.0 STABLE RELEASE

    Mi Mix 2S Android 10 sans-serif-condensed font stopped working in MIUI launcher's widgets. How it looks now: How it should look like (and does look like in POCO launcher on the same device and ROM):
  14. Mikanoshi

    Resolved Status bar getting black color when locking

    You can also make this bug appear on your device by running settings put secure doze_always_on 1 for SDK >= 28 or settings put secure aod_mode 1 for lower versions.
  15. Mikanoshi

    Resolved Status bar getting black color when locking

    Actually, I had this bug by accident. Mi Mix 2S doesn't have AOD, I was just experimenting with it to make it work on my device, so I had an AOD system setting enabled, that's why this code was executing :) Gxzw sensor is an in-screen fingerprint sensor, this device also doesn't have that.
  16. Mikanoshi

    Resolved Status bar getting black color when locking

    Attached file is an Xposed module that incorporates the method above (but with fingerprint condition removed). The only way to remove this visual bug without modifications is by disabling both fingerprint authentication and AOD.
  17. Mikanoshi

    Resolved Status bar getting black color when locking

    I think I found a better solution than changing scrim color. This code in com.android.systemui.statusbar.phone.FingerprintUnlockController.onStartedGoingToSleep() eventually causes scrim to appear: if (MiuiKeyguardUtils.isAodEnable(this.mContext) || (MiuiKeyguardUtils.isGxzwSensor() &&...
  18. Mikanoshi

    Resolved Status bar getting black color when locking

    I don't make smali mods, I fixed it with Xposed.
  19. Mikanoshi

    Resolved Status bar getting black color when locking

    Ooohhh yeaaaah, I fixed it! :) Problem is with ScrimView +id/scrim_in_front in status bar. It has default black color and class com.android.systemui.statusbar.phone.ScrimController changes its alpha between 0.0f and 1.0f under different circumstances. Front scrim covers everything inside status...
  20. Mikanoshi

    New MIUI 11 Stable (11.0.2.0) Mix2S - Messages App/Service not working

    Get this file from your device: /data/user_de/0/com.android.providers.telephony/databases/mmssms.db Open in any SQLite Editor (e.g. https://sqlitebrowser.org) and change user_version pragma from 112 to 111, upload back and replace, should work right away.