├── Android.bp ├── Android.mk ├── AndroidProducts.mk ├── BoardConfig.mk ├── README.md ├── configs ├── audio │ └── SpeechVol_AudioParam.xml └── sku_props │ ├── build_dsds_vendor.prop │ └── build_ss_vendor.prop ├── device.mk ├── extract-files.sh ├── lineage_lava.mk ├── manifest_galahad.xml ├── overlay-lineage └── lineage-sdk │ └── lineage │ └── res │ └── res │ └── values │ └── config.xml ├── overlay └── frameworks │ └── base │ └── core │ └── res │ └── res │ └── values │ ├── config.xml │ └── dimens.xml ├── proprietary-files.txt └── setup-makefiles.sh /Android.bp: -------------------------------------------------------------------------------- 1 | soong_namespace { 2 | } 3 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redmi-MT6768/android_device_xiaomi_lava/HEAD/Android.mk -------------------------------------------------------------------------------- /AndroidProducts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redmi-MT6768/android_device_xiaomi_lava/HEAD/AndroidProducts.mk -------------------------------------------------------------------------------- /BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redmi-MT6768/android_device_xiaomi_lava/HEAD/BoardConfig.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/audio/SpeechVol_AudioParam.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redmi-MT6768/android_device_xiaomi_lava/HEAD/configs/audio/SpeechVol_AudioParam.xml -------------------------------------------------------------------------------- /configs/sku_props/build_dsds_vendor.prop: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /configs/sku_props/build_ss_vendor.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redmi-MT6768/android_device_xiaomi_lava/HEAD/configs/sku_props/build_ss_vendor.prop -------------------------------------------------------------------------------- /device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redmi-MT6768/android_device_xiaomi_lava/HEAD/device.mk -------------------------------------------------------------------------------- /extract-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redmi-MT6768/android_device_xiaomi_lava/HEAD/extract-files.sh -------------------------------------------------------------------------------- /lineage_lava.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redmi-MT6768/android_device_xiaomi_lava/HEAD/lineage_lava.mk -------------------------------------------------------------------------------- /manifest_galahad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redmi-MT6768/android_device_xiaomi_lava/HEAD/manifest_galahad.xml -------------------------------------------------------------------------------- /overlay-lineage/lineage-sdk/lineage/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redmi-MT6768/android_device_xiaomi_lava/HEAD/overlay-lineage/lineage-sdk/lineage/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redmi-MT6768/android_device_xiaomi_lava/HEAD/overlay/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redmi-MT6768/android_device_xiaomi_lava/HEAD/overlay/frameworks/base/core/res/res/values/dimens.xml -------------------------------------------------------------------------------- /proprietary-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redmi-MT6768/android_device_xiaomi_lava/HEAD/proprietary-files.txt -------------------------------------------------------------------------------- /setup-makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redmi-MT6768/android_device_xiaomi_lava/HEAD/setup-makefiles.sh --------------------------------------------------------------------------------