I'm trying to flash today's version (VANILLA) and flash crashed showing ERROR 1. Someone can help me? Thank you!
Last edited:
Try to update in 1.26Hi, i have a problem with my sound when my phone is at 5% or lower.
My sound is not working, nowhere, also not in calls.
And my volume is not going up when i press the volume up button, down is working and i can also slide the volume slider manualy.
when i start charging and when my phone is above 5% my sound is working again (Sometimes after a restart)
Anyone with the same problem, is this a battery save option or something? can't find it. Thx
I am currently on the 24th of january version btw
Thank you!Nope. You use MiFlash to reflash MIUI.
Same issue for me. Phone times out at 2 minutes and screen goes blank, when double tapped/or power on, the phone goes to the lock screen wallpaper. When I swipe up the phone goes to the main screen and notifications show on the notification bar only. No notification sounds work unless the phone is on the main screen.Hey peeps I'm using this ROM and having issues with notifications on WiFi being delayed up to 10-20 minutes or showing up only when I unlock the screen.
This is what I did to troubleshoot but the issue is still present.
Settings > Battery > Battery Manager > Off
Settings > Apps & Notifications > Special App Access > Adaptive Notifications > None
Settings > Apps & Notifications > Special App Access > Battery Optimization > Don't Optimize (For my important apps)
Settings > Display > Lock Screen > Wake Screen For Notifications > Toggle On
Any help would be appreciated.
To update on my earlier post, here is how to automate the recovery of the volume settings (or for that matter any custom settings). Arrow by default includes a backup-functionality, we just have to use it by including the additional files.Steps to set custom volume steps (on non-rooted phone) are:
1. Mount "system" in OrangeFox
2. adb pull /system_root/system/build.prop
3. Edit build.prop and set desired values
4. adb push build.prop /system_root/system/
5. Reboot & enjoy the new volume steps
Nodoes it have stock camera (from miui), I needed the features and the quality of the stock camera. hope you reply.
To answer my own question: I wnet back to V12.0.4.0 and NFC is backI have a question: I'm unsure which firmware I need to use with this ROM. It has to do with NFC. In settings the NFC menu is empty and apps are complaining that I don't have a NFC chip. I do have a SURYA and NFC has worked in MIUI, but that was a very long time ago...
I did flash V12.0.8.0.QJGINXM from India because the changelog said the blobs were updated to that version.
Now I flashed back to V12.0.7.0.QJGMIXM Global but NFC is still not working.
Anyone have any idea?
Found the error. It was AdAway i had to disable it, uninstall all Apps and clecn the cache, install the apps, configure them and then enable adaway again.Hey, nice ROM.
All is working for me from the basic apps.
But I've some problems with one banking app, one sports app what is using a cloud service, and all amazon apps.
On the amazon apps I'm getting an error that chrome is outdated and there is a certificate error. I think the other apps have the same problem but can't display the error on this way.
I've checked that I've the latest web apps, chrome etc. I'm on the version from 26.1.2021
I have this issue too. I solved flashing xiaomi.eu, format data. Then flash arrow again.I'm trying to flash today's version (VANILLA) and flash crashed showing ERROR 1. Someone can help me? Thank you!
Seems like you don't want to replace the entire build.prop file, but only change a specific line in the file. Since the backup script is just a regular Linux shell script you should be able to use the Linux command line toolTo update on my earlier post, here is how to automate the recovery of the volume settings (or for that matter any custom settings). Arrow by default includes a backup-functionality, we just have to use it by including the additional files.
-> see EDIT, this is not a good way and will break things!
How to set custom volume steps and restore settings after OTA update (on non-rooted phone):
1. Mount "system" in OrangeFox
2. adb pull /system_root/system/build.prop
3. Edit build.prop and set desired values
4. adb push build.prop /system_root/system/
5. adb pull /system_root/system/addon.d/50-arrow.sh
6. Edit 50-arrow.sh to include build.prop, so list_files() function reads something like this:
list_files() {
cat <<EOF
etc/hosts
build.prop
EOF
}
7. adb push 50-arrow.sh /system_root/system/addon.d/50-arrow.sh
6. Reboot & enjoy the new volume steps + have them restored after OTA update
Of course, keep in mind that OTA might push a build.prop with important new settings, these will now be overwritten. So we probably want to change the script a bit more, as to keep the newly delivered version (save it as build.prop.arrow-ota for example) to be able to check and compare from time to time.
EDIT: Turns out this indeed breaks things, so don't use it. I will come up with a better solution. Leaving the post here for reference on how NOT to do it. Namely, the build.prop of course also contains build information, so after using the above method updates will not show as installed anymore (even though they are).
sed
to change the build.prop file after the update. The command should look something likesed -i 's/old line/new line/' build.prop
sed
is available in the environment and commands can be specified to run after the update. Good luck