@embeddedmz said in My final feedback after 5 months of using UT on a Xiaomi Mi A2:
- Volume of headphones used with a USB Type-C to 3,5 mm adaptor is low even if the system sound volume is at it highest value.
Boot device to recovery screen. (restart + Volume Up) and connect to PC. From Terminal do:
- if your vendor is flashed to slot A:
adb shell mount /dev/block/bootdevice/by-name/vendor_a /tmp
adb pull /tmp/etc/mixer_paths.xml
sed -i -e '/RX1 Digital Volume/{s/72/81/}' -e '/RX2 Digital Volume/{s/72/81/}' mixer_paths.xml
adb push mixer_paths.xml /tmp/etc
adb shell umount /tmp
- if your vendor is flashed to slot B:
adb shell mount /dev/block/bootdevice/by-name/vendor_b /tmp
adb pull /tmp/etc/mixer_paths.xml
sed -i -e '/RX1 Digital Volume/{s/72/81/}' -e '/RX2 Digital Volume/{s/72/81/}' mixer_paths.xml
adb push mixer_paths.xml /tmp/etc
adb shell umount /tmp
You can try to change both slots.
Restart device and enjoy.
Note: sed command is changing volume 72 to 81 in this section:
<path name="headphones-ce">
<path name="headphones" />
<ctl name="RX1 Digital Volume" value="72" />
<ctl name="RX2 Digital Volume" value="72" />
</path>
- The web browser : when watching a video on Youtube, it's impossible to move the seek bar to another time and when we try harder there's the contextual menu of the browser that appears.
You can try tapping (double, tripple etc.) right side of video to forward, left side to backward seek.