├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── Android.mk ├── BoardConfig.mk ├── README.md ├── audio ├── audio_platform_info.xml └── mixer_paths_tasha.xml ├── device.mk ├── extract-files.sh ├── lineage.dependencies ├── lineage.mk ├── overlay-lineage └── vendor │ └── cmsdk │ └── cm │ └── res │ └── res │ └── values │ └── config.xml ├── overlay └── frameworks │ └── base │ └── core │ └── res │ └── res │ ├── values │ └── config.xml │ └── xml │ └── power_profile.xml ├── proprietary-files.txt ├── setup-makefiles.sh ├── system.prop └── vendorsetup.sh /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z2-dev/android_device_zuk_z2_plus/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.project 2 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z2-dev/android_device_zuk_z2_plus/HEAD/Android.mk -------------------------------------------------------------------------------- /BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z2-dev/android_device_zuk_z2_plus/HEAD/BoardConfig.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z2-dev/android_device_zuk_z2_plus/HEAD/README.md -------------------------------------------------------------------------------- /audio/audio_platform_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z2-dev/android_device_zuk_z2_plus/HEAD/audio/audio_platform_info.xml -------------------------------------------------------------------------------- /audio/mixer_paths_tasha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z2-dev/android_device_zuk_z2_plus/HEAD/audio/mixer_paths_tasha.xml -------------------------------------------------------------------------------- /device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z2-dev/android_device_zuk_z2_plus/HEAD/device.mk -------------------------------------------------------------------------------- /extract-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z2-dev/android_device_zuk_z2_plus/HEAD/extract-files.sh -------------------------------------------------------------------------------- /lineage.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z2-dev/android_device_zuk_z2_plus/HEAD/lineage.dependencies -------------------------------------------------------------------------------- /lineage.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z2-dev/android_device_zuk_z2_plus/HEAD/lineage.mk -------------------------------------------------------------------------------- /overlay-lineage/vendor/cmsdk/cm/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z2-dev/android_device_zuk_z2_plus/HEAD/overlay-lineage/vendor/cmsdk/cm/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z2-dev/android_device_zuk_z2_plus/HEAD/overlay/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/xml/power_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z2-dev/android_device_zuk_z2_plus/HEAD/overlay/frameworks/base/core/res/res/xml/power_profile.xml -------------------------------------------------------------------------------- /proprietary-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z2-dev/android_device_zuk_z2_plus/HEAD/proprietary-files.txt -------------------------------------------------------------------------------- /setup-makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z2-dev/android_device_zuk_z2_plus/HEAD/setup-makefiles.sh -------------------------------------------------------------------------------- /system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z2-dev/android_device_zuk_z2_plus/HEAD/system.prop -------------------------------------------------------------------------------- /vendorsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z2-dev/android_device_zuk_z2_plus/HEAD/vendorsetup.sh --------------------------------------------------------------------------------