b78ed962c99f92bbed0343590ca3f96c1ff2e7c6
When profile is changed to known from unknown, the preference didn't get updated. Change-Id: Ic5e41f8c853187272d00178c7de02551f16350f9
dolby: configs: Kang dax-default from https://github.com/reiryuki/Dolby-Atmos-Sony-Xperia-5-V-Magisk-Module
Sony Dolby ============== Getting Started --------------- For dolby media codecs to work add this line in your media codecs config (should be in vendor partition) :- ```bash <Include href="media_codecs_dolby_audio.xml" /> ``` To build, add the dolby effects in your device's audio effects config then inherit the dolby config by adding this in your device's makefile :- ```bash $(call inherit-product, hardware/dolby/dolby.mk) ``` Now, moving hidl definitions in manifest to device trees is completely absurd so stop overriding manifest in your device trees an example for such would be :- Changing these in BoardConfig makefile of your device tree:- ```bash DEVICE_FRAMEWORK_COMPATIBILITY_MATRIX_FILE := ``` And ```bash DEVICE_MANIFEST_FILE := ``` To:- ```bash DEVICE_FRAMEWORK_COMPATIBILITY_MATRIX_FILE += ``` And ```bash DEVICE_MANIFEST_FILE += ``` The only change done above is changing := symbol to += so that manifest can't be overriden from device tree in BoardConfig makefile. At the end an example commit to properly implement it in your device tree could be :- [**1**] https://github.com/Spanish-or-Vanish/android_device_xiaomi_sm8350-common/commit/a901896564981d1f70afde96f44fe8116fbc034e [**2**] https://github.com/Spanish-or-Vanish/android_device_xiaomi_sm8350-common/commit/21dd26d97ddd511e52ab59537deea98b86356222 # Credits: * [**HELLBOY017**](https://github.com/HELLBOY017) * [**adithya2306**](https://github.com/adithya2306) * [**johnmart19**](https://github.com/johnmart19) * [**userariii**](https://github.com/userariii)
Description
Languages
Kotlin
94.1%
Makefile
4.9%
C++
1%