Question Xiaomi.EU weekly ROM - Redmi 9 Power / 9T

After yesterday's update (21.4.7.), the system became completely fast-paced.

fa4hu said:
After yesterday's update (21.4.7.), the system became completely fast-paced.
Click to expand...
Click to collapse
fast

KaKangAta said:
fast
Click to expand...
Click to collapse
do you have some screenshots?

Im still on stable release

fa4hu said:
After yesterday's update (21.4.7.), the system became completely fast-paced.
Click to expand...
Click to collapse
Can you please share some screenshots.
And also tell me about battery and heating problem?

Tahir03000 said:
Can you please share some screenshots.
And also tell me about battery and heating problem?
Click to expand...
Click to collapse
Battery time is good, I haven't heating problem.

fa4hu said:
Battery time is good, I haven't heating problem.
Click to expand...
Click to collapse
You didnt encounter "This device isn't Play Protect certified" issue? Because I am. Can you help to fix?

Player X said:
You didnt encounter "This device isn't Play Protect certified" issue? Because I am. Can you help to fix?
Click to expand...
Click to collapse
I have not encountered such an error, but the "CTS profile match" error occurs in the August ROMs.
Try clearing data of Google, Google services and Google Play services.

The ROM is full of bugs lately, it is not recommended to install it, use the stable version instead.

Related

Unofficial AICP HTC One M7spr

This ROM is now being managed by another XDA member.
I suppose I have to ask a moderator to close it?
Reserved
Suppose I should reserve one just in case.
any more information on this rom?
94tbird said:
any more information on this rom?
Click to expand...
Click to collapse
It's just a build of AICP, you can check their stuff here: web site and here: Google+
Gapps ?
I'm using these Lollipop gapps.
https://basketbuild.com/gapps
any review this rom ? the first 5.1 ROM for ONE?
First boot is well, no force closes or anything. The only problem is that I am on roaming for some reason.
Edit: It's nice to see the data toggle finally working on CM 12, even though the toggle is only through the setting page
EmSeeMAC said:
First boot is well, no force closes or anything. The only problem is that I am on roaming for some reason.
Edit: It's nice to see the data toggle finally working on CM 12, even though the toggle is only through the setting page
Click to expand...
Click to collapse
can you post some screenshot????
md07 said:
can you post some screenshot????
Click to expand...
Click to collapse
of what exactly?
EmSeeMAC said:
of what exactly?
Click to expand...
Click to collapse
sceenshot of this rom?
It's an extremely smooth rom
EmSeeMAC said:
It's an extremely smooth rom
Click to expand...
Click to collapse
Maybe this rom also have problem about signal display. This problem same as rom CM. It'alway show 2-3 bar, not full. But signal is ok, just wrong display
Kernel Auditor works?
at me management of awakening doesn't join...
I see Various **** is included, I think I have my afternoon planned then! Can't wait to give it a whirl
md07 said:
Maybe this rom also have problem about signal display. This problem same as rom CM. It'alway show 2-3 bar, not full. But signal is ok, just wrong display
Click to expand...
Click to collapse
I think that's just the Lollipop standard these days... I prefer the 5-6 signal bars as well.
Sent from my HTCONE using Tapatalk
@superfes Are you going to maintain nightlies?
Greytest said:
@superfes Are you going to maintain nightlies?
Click to expand...
Click to collapse
I plan on building it for myself at least once a day, I'll certainly keep uploading them.
^_^
Is it possible for an alternative download link? The current one isn't mobile friendly.
BodhiBrock said:
Is it possible for an alternative download link? The current one isn't mobile friendly.
Click to expand...
Click to collapse
Do you have a preference?
superfes said:
Do you have a preference?
Click to expand...
Click to collapse
Maybe Android File Host?

[MOD] [ROM & Google Play Services] [v7.3.29] SystemUpdateService Wakelock Fix

Since this issue seems to affecting a lot of people, I decided to post what I use to fix the issue. Basically what this mod does is remove the command that acquires the wakelock, so it never exist.
Note: If the app updates itself, the wakelock will be back(unless Google fixes it), so I will try to keep this up to date with the latest version until it's not needed anymore.
To install, flash the zip in recovery
Modded Google Play Services
xx0 versions are for all DPIs, so it covers xx2, xx4, xx6 & xx8 in 1 file
KitKat v7.3.29(030) - All DPI - armeabi-v7a - Older Android versions that don't have the system/priv-app folder, you can rename the priv-app folder in the zip to app
md5 - 8bfac34b48a5cd05773ac85c714927c2
Lollipop v7.3.29(430) - All DPI - armeabi-v7a
md5 - ddf795c287546d3545fab2a3140654ea
Lollipop v7.3.29(438) - 480 DPI - armeabi-v7a
md5 - 8627599d7dd12e5b850fc3b41f41f54a
Lollipop v7.3.29(440) - All DPI - arm64-v8a - Being worked on
md5 -
Modded Framework
This fixes the root cause of the issue, so the service will operate properly now. The modded Google Play Services versions are not needed with this
Be sure to enable the SystemUpdateService for Google Play Services & Google Services Framework if you use DisableService or similar app
YNG1TAS0YL
Instructions for Modifying Framework
Decompile framework-res.apk and modify values/array.xml
Before - If you don't see this code, then your ROM is not the cause of this wakelock
Code:
<string-array name="config_disabledComponents">
<item>com.google.android.gsf/com.google.android.gsf.update.SystemUpdateActivity</item>
<item>com.google.android.gsf/com.google.android.gsf.update.SystemUpdateService</item>
<item>com.google.android.gsf/com.google.android.gsf.update.SystemUpdateService$Receiver</item>
<item>com.google.android.gms/com.google.android.gms.update.SystemUpdateActivity</item>
<item>com.google.android.gms/com.google.android.gms.update.SystemUpdateService</item>
<item>com.google.android.gms/com.google.android.gms.update.SystemUpdateService$Receiver</item>
<item>com.google.android.gms/com.google.android.gms.update.SystemUpdateService$ActiveReceiver</item>
</string-array>
After
Code:
<string-array name="config_disabledComponents">
<item>com.google.android.gsf/com.google.android.gsf.update.SystemUpdateActivity</item>
<item>com.google.android.gsf/com.google.android.gsf.update.SystemUpdateService$Receiver</item>
<item>com.google.android.gsf/com.google.android.gsf.update.SystemUpdateService$SecretCodeReceiver</item>
<item>com.google.android.gms/com.google.android.gms.update.SystemUpdateActivity</item>
<item>com.google.android.gms/com.google.android.gms.update.SystemUpdateService$Receiver</item>
<item>com.google.android.gms/com.google.android.gms.update.SystemUpdateService$ActiveReceiver</item>
<item>com.google.android.gms/com.google.android.gms.update.SystemUpdateService$SecretCodeReceiver</item>
</string-array>
Calkulin said:
Since this issue seems to affecting a lot of people, I decided to post what I use to fix the issue. If the app updates itself, the wake lock will be back(unless Google fixes it), so I will try to keep this up to date with the latest version until it's not needed anymore.
To install, flash the zip in recovery
Click to expand...
Click to collapse
Finally...thanks a lot..this is much needed..:thumbup:
Sent from my A0001 using xda app-developers app
Thank you very much Calkulin, really appreciate your work
thank you calkulin. great job Boricua!!
Thank you Calkulin, waiting for your CM12S root version!
Thank you Calkulin
nigol
Calkulin said:
Since this issue seems to affecting a lot of people, I decided to post what I use to fix the issue. If the app updates itself, the wake lock will be back(unless Google fixes it), so I will try to keep this up to date with the latest version until it's not needed anymore.
To install, flash the zip in recovery
Click to expand...
Click to collapse
Might be forced to give this a try since nothing else is working lol. What changes did you make?
Can you please provide the checksums?
getapatalked mit Android 5.1
Thank you @Calkulin.
Sent from my GT-I9300 using XDA Free mobile app
which wakelock does this fix, the NextAlarmTracker wakelock?
Calkulin said:
Since this issue seems to affecting a lot of people, I decided to post what I use to fix the issue. If the app updates itself, the wake lock will be back(unless Google fixes it), so I will try to keep this up to date with the latest version until it's not needed anymore.
To install, flash the zip in recovery
Click to expand...
Click to collapse
This is very nice. Would it be possible to elaborate what this actually does?
Same as the "DisableService" solution to prevent 'SystemUpdateService' ??
I'm just curious
Instant results?
Hey man.
For starters thanks a lot for your help! I was wondering if the results are instant or does it take a while to check the difference? Because after I flashed the .zip and booted the phone I went to check the battery status and the Google Services were still taking 66% of the my battery life. Is that normal?
Thanks in advance!
CarlosMBM said:
Hey man.
For starters thanks a lot for your help! I was wondering if the results are instant or does it take a while to check the difference? Because after I flashed the .zip and booted the phone I went to check the battery status and the Google Services were still taking 66% of the my battery life. Is that normal?
Thanks in advance!
Click to expand...
Click to collapse
that doesn't mean that it is still "taking" 66%. It is saying that the service has used that percentage of the total used amount so far. the change will be "instant" but the usage counts will still show that until they reset.
doesnt fix the NextAlarmTracker wakelock for me
jase33 said:
that doesn't mean that it is still "taking" 66%. It is saying that the service has used that percentage of the total used amount so far. the change will be "instant" but the usage counts will still show that until they reset.
Click to expand...
Click to collapse
And just curious, do you know when will they reset? Because so far I haven't noticed any difference :/ Thanks in advance mate!
Great, deep sleep fixed to me! Thank you so much
nhshah7 said:
Might be forced to give this a try since nothing else is working lol. What changes did you make?
Click to expand...
Click to collapse
It basically doesn't acquire the wake lock, so it never exist
Tylonhh said:
Can you please provide the checksums?
getapatalked mit Android 5.1
Click to expand...
Click to collapse
I'll put them up shortly
nuwan32 said:
which wakelock does this fix, the NextAlarmTracker wakelock?
Click to expand...
Click to collapse
SystemUpdateService but my phone doesn't have the NextAlarmTracker wake lock, so I can look into that one also and add it
Larsush said:
This is very nice. Would it be possible to elaborate what this actually does?
Same as the "DisableService" solution to prevent 'SystemUpdateService' ??
I'm just curious
Click to expand...
Click to collapse
Like I said, it just doesn't acquire the wake lock, so it doesn't exist
Calkulin said:
It basically doesn't acquire the wake lock, so it never exist
I'll put them up shortly
SystemUpdateService but my phone doesn't have the NextAlarmTracker wake lock, so I can look into that one also and add it
Like I said, it just doesn't acquire the wake lock, so it doesn't exist
I'll try to find it and remove that one also
Click to expand...
Click to collapse
thank you! i dont know if it is related to playstore though. some people are saying its calendar related, others are saying its clock, but nobody is sure.
Thank you @Calkulin!
RCT1 said:
Thank you Calkulin, waiting for your CM12S root version!
Click to expand...
Click to collapse
As always, waiting for you too...
nuwan32 said:
thank you! i dont know if it is related to playstore though. some people are saying its calendar related, others are saying its clock, but nobody is sure.
Click to expand...
Click to collapse
I just looked and could not find it anywhere in Play Services, so is that the exact name of what's showing? Do you have screenshot in BetterBatteryStats?
néonaloj said:
Thank you @Calkulin!
As always, waiting for you too...
Click to expand...
Click to collapse
Is there an OTA zip out that I don't know about yet??

Issue with Mi 8 GPS

Hey there,
I just received my Mi 8 yesterday and I am getting serious issue with GPS, it's not connecting at all even though I accepted all permissions with several apps!
It's set on high accuracy but won't find my location through GPS (always connecting/searching for the GPS).
Have you guys encountered this issue and found solutions ?
I can retrieve my position with network but not GPS, with Waze for example.
variamus said:
Hey there,
I just received my Mi 8 yesterday and I am getting serious issue with GPS, it's not connecting at all even though I accepted all permissions with several apps!
It's set on high accuracy but won't find my location through GPS (always connecting/searching for the GPS).
Have you guys encountered this issue and found solutions ?
I can retrieve my position with network but not GPS, with Waze for example.
Click to expand...
Click to collapse
ROM?
rodfrang said:
ROM?
Click to expand...
Click to collapse
Sorry, stock one (no bootloader code yet)
MiUI 9.5.11.0 (OEACNFA) Stable
Android 8.1
this problem has been fixed as patch in MIUI10 8.7.26
PikaJr said:
this problem has been fixed as patch in MIUI10 8.7.26
Click to expand...
Click to collapse
Oh thanks, great to hear there is a fix but this means I've to wait 15 days to apply this patch or is there any other solutions ?
variamus said:
Sorry, stock one (no bootloader code yet)
MiUI 9.5.11.0 (OEACNFA) Stable
Android 8.1
Click to expand...
Click to collapse
i have miui 10 china developer too, but try this
select gps device only
if you can, locate a-gps settings in the rom, ( in settings, search settings, write a-gps),and select:
all network, msb, server adress supl.google,com, server port 7275 , hot
push more at the botton and save.
reboot your phone
if you cannot locate agps settings,
install gps test apk from play store
open the app and select three point, agps, clear and update
on settings, select datum and select the best option for your country, save and restart the app
Hope it works for you
Regards
rodfrang said:
i have miui 10 china developer too, but try this
select gps device only
if you can, locate a-gps settings in the rom, ( in settings, search settings, write a-gps),and select:
all network, msb, server adress supl.google,com, server port 7275 , hot
push more at the botton and save.
reboot your phone
if you cannot locate agps settings,
install gps test apk from play store
open the app and select three point, agps, clear and update
on settings, select datum and select the best option for your country, save and restart the app
Hope it works for you
Regards
Click to expand...
Click to collapse
Unfortunately this is not working.. :/
variamus said:
Unfortunately this is not working.. :/
Click to expand...
Click to collapse
I have been reading that some have solved the problem by installing gps reset app from the play store.
https://play.google.com/store/apps/details?id=com.discipleskies.gpsreset&hl=es
rodfrang said:
I have been reading that some have solved the problem by installing gps reset app from the play store.
https://play.google.com/store/apps/details?id=com.discipleskies.gpsreset&hl=es
Click to expand...
Click to collapse
Unfortunately its the same end... dunno what to do
Any idea on unblocking agps settings? I don't have it..
variamus said:
Sorry, stock one (no bootloader code yet)
MiUI 9.5.11.0 (OEACNFA) Stable
Android 8.1
Click to expand...
Click to collapse
I have the same 9.5.11.0 and my GPS is absolutely fine, i would probably look at returning the unit.
Did you ever manage to fix this? I have the same problem unfortunately.
toytown said:
I have the same 9.5.11.0 and my GPS is absolutely fine, i would probably look at returning the unit.
Click to expand...
Click to collapse
China rom too I presume?
variamus said:
China rom too I presume?
Click to expand...
Click to collapse
I'm honestly not that up to date with Xiaomi devices, but when i checked it shows MiUI 9.5.11.0 (OEACNFA) Stable....not sure if thats chinese or not.
toytown said:
I'm honestly not that up to date with Xiaomi devices, but when i checked it shows MiUI 9.5.11.0 (OEACNFA) Stable....not sure if thats chinese or not.
Click to expand...
Click to collapse
So yeah, it's China rom.
I'm cursed.
PikaJr said:
this problem has been fixed as patch in MIUI10 8.7.26
Click to expand...
Click to collapse
hello my friend. Could you please provide me with this patch?
I have the same problem with the same Rom. I managed to get GPS signals by rebooting the device every time I really need to use GPS and it works. Problem is that after you reboot it hangs, so then
you have to keep on pressing the power button and it will reboot and Gps will work. Not exactly a permanent solution though.
PikaJr said:
this problem has been fixed as patch in MIUI10 8.7.26
Click to expand...
Click to collapse
Sarago said:
I have the same problem with the same Rom. I managed to get GPS signals by rebooting the device every time I really need to use GPS and it works. Problem is that after you reboot it hangs, so then
you have to keep on pressing the power button and it will reboot and Gps will work. Not exactly a permanent solution though.
Click to expand...
Click to collapse
I have the exact same problem. So I think that is a problem with the Rom and not the phone. We have to wait and see with the new update
omek07 said:
I have the exact same problem. So I think that is a problem with the Rom and not the phone. We have to wait and see with the new update
Click to expand...
Click to collapse
Also exactly the same. Hope there will be a fix soon.
Hello i opened a Bug report in miui.com so if anyone wants to confirm the problem here is the link
http://en.miui.com/thread-3466043-1-1.html

New update NA v 1.20

Just received update notification.
Notes say:
Google security patch
Stability optimizations
Does anyone have any more details?
Thanks.
Pathetic. This is the first update since August 2019 and all they do is send out a security patch. No bug fixes whatsoever. Where the Fuk is Android 10?
It feels more stable but the major bugs from 1.18 are still there.
The last update was 10/17/2019. Which bugs are you referring to? I don't have any bugs, but I don't use certain features, like gaming.
This is the reason im here . I just installed it and my phone does not work with 4G as it use to be . I cant even log to pubg and any help please
Redmagic3 said:
This is the reason im here . I just installed it and my phone does not work with 4G as it use to be . I cant even log to pubg and any help please
Click to expand...
Click to collapse
I installed the update, and everything is working so far.
Are you rooted? Is that the problem?
Have you tried clearing the cache from recovery?
You can't update your rooted phone and root doesn't work in new update.
Thank you
nabbed said:
Just received update notification.
Notes say:
Google security patch
Stability optimizations
Does anyone have any more details?
Thanks.
Click to expand...
Click to collapse
can any one provide me the boot img of this latest update v1.20
xphyle1971 said:
Pathetic. This is the first update since August 2019 and all they do is send out a security patch. No bug fixes whatsoever. Where the Fuk is Android 10?
Click to expand...
Click to collapse
nabbed said:
The last update was 10/17/2019. Which bugs are you referring to? I don't have any bugs, but I don't use certain features, like gaming.
Click to expand...
Click to collapse
Major storage bug, screen tearing when scrolling through apps, even after a factory reset and using it without Magisk the phone has the major bugs
chocolote4444 said:
Major storage bug, screen tearing when scrolling through apps, even after a factory reset and using it without Magisk the phone has the major bugs
Click to expand...
Click to collapse
I have none of those bugs. Maybe they have quality control issues, and you have a defective unit.
My phone is literally perfect. Love it.
ghostknightfire said:
You can't update your rooted phone and root doesn't work in new update.
Thank you
Click to expand...
Click to collapse
I am on root and any idea on how to install the latest update? I dont know how to unroot my phone...
Any help here is appreciated..
Aru

Question About Xiaomi EU Rom - "This device isn't Play Protect certified" issue

Anyone here who flash Xiaomi Eu rom experienced "This device isn't Play Protect certified" after installing the rom? Anyone here have a fix to this issue? Thank you and hoping for answer.
Player X said:
Anyone here who flash Xiaomi Eu rom experienced "This device isn't Play Protect certified" after installing the rom? Anyone here have a fix to this issue? Thank you and hoping for answer.
Click to expand...
Click to collapse
Only version 12.0.12.0 stable is play certified for others you have to use magisk.
This is the link to 12.0.12.0 stable thats what im using
https://sourceforge.net/projects/xiaomi-eu-multilang-miui-roms/files/xiaomi.eu/MIUI-STABLE-RELEASES/MIUIv12/xiaomi.eu_multi_HMNote94G_HM9T_V12.0.12.0.QJQCNXM_v12-10.zip/download
Pauljeks said:
Only version 12.0.12.0 stable is play certified for others you have to use magisk.
This is the link to 12.0.12.0 stable thats what im using
https://sourceforge.net/projects/xiaomi-eu-multilang-miui-roms/files/xiaomi.eu/MIUI-STABLE-RELEASES/MIUIv12/xiaomi.eu_multi_HMNote94G_HM9T_V12.0.12.0.QJQCNXM_v12-10.zip/download
Click to expand...
Click to collapse
Any thoughts of using this rom? Is this good for a long term use?
Player X said:
Any thoughts of using this rom? Is this good for a long term use?
Click to expand...
Click to collapse
Yes.. but after you flash for the first time their will be small lag when polling down quick settings but after using for a while it will be ok i have been using it for two months

Categories

Resources