├── Android.bp ├── AndroidProducts.mk ├── BoardConfig.mk ├── board-info.txt ├── config.fs ├── configs ├── audio │ ├── audio_effects.xml │ ├── audio_platform_info_qrd.xml │ ├── audio_platform_info_yupikqrd.xml │ ├── audio_policy_configuration.xml │ ├── audio_policy_configuration_a2dp_offload_disabled.xml │ └── mixer_paths_yupikqrd.xml ├── media │ ├── media_codecs_performance_yupik_v1.xml │ ├── media_codecs_yupik_v1.xml │ ├── media_profiles.xml │ ├── media_profiles_V1_0.xml │ ├── media_profiles_vendor.xml │ └── media_profiles_yupik_v1.xml ├── permissions │ └── privapp-permissions-hotword.xml ├── public.libraries.txt ├── sensors │ └── hals.conf ├── vintf │ ├── manifest.xml │ └── vendor_framework_compatibility_matrix.xml └── wifi │ ├── WCNSS_qcom_cfg.ini │ ├── p2p_supplicant_overlay.conf │ └── wpa_supplicant_overlay.conf ├── device.mk ├── extract-files.py ├── lineage.dependencies ├── lineage_Spacewar.mk ├── modules.load ├── modules.load.recovery ├── overlay-lineage ├── lineage-sdk │ ├── lineage │ │ └── res │ │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ └── packages │ │ └── LineageSettingsProvider │ │ └── res │ │ └── values │ │ └── defaults.xml └── packages │ └── apps │ ├── Aperture │ └── app │ │ └── src │ │ └── main │ │ └── res │ │ └── values │ │ └── config.xml │ ├── Dialer │ └── java │ │ └── com │ │ └── android │ │ └── dialer │ │ └── callrecord │ │ └── res │ │ └── values │ │ └── config.xml │ └── Settings │ └── res │ └── values │ └── config.xml ├── overlay ├── frameworks │ └── base │ │ ├── core │ │ └── res │ │ │ └── res │ │ │ ├── values-land │ │ │ └── dimens.xml │ │ │ ├── values │ │ │ ├── config.xml │ │ │ └── dimens.xml │ │ │ └── xml │ │ │ └── power_profile.xml │ │ └── packages │ │ ├── SettingsProvider │ │ └── res │ │ │ └── values │ │ │ └── defaults.xml │ │ └── SystemUI │ │ └── res │ │ ├── values-land │ │ └── dimens.xml │ │ └── values │ │ ├── config.xml │ │ └── dimens.xml └── packages │ ├── apps │ └── Settings │ │ └── res │ │ └── values │ │ └── config.xml │ └── services │ └── Telephony │ └── res │ └── values │ └── config.xml ├── properties ├── odm.prop ├── product.prop ├── system.prop ├── system_ext.prop └── vendor.prop ├── proprietary-files.txt ├── proprietary-firmware.txt ├── rootdir ├── Android.bp ├── bin │ ├── init.class_main.sh │ ├── init.kernel.post_boot.sh │ ├── init.qcom.sh │ └── init.qti.kernel.sh └── etc │ ├── fstab.default │ ├── init.qcom.rc │ ├── init.qti.kernel.rc │ ├── init.recovery.qcom.rc │ ├── init.target.rc │ └── ueventd.qcom.rc ├── rro_overlays ├── CarrierConfigOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── xml │ │ └── vendor.xml └── WifiResCommon │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ └── values │ └── config.xml ├── sensors ├── Android.bp ├── Sensor.cpp ├── Sensor.h ├── SensorsSubHal.cpp └── SensorsSubHal.h ├── sepolicy ├── private │ ├── dontaudit.te │ ├── glyph_app.te │ ├── odrefresh.te │ ├── property_contexts │ └── seapp_contexts ├── public │ ├── glyph_app.te │ └── property.te └── vendor │ ├── device.te │ ├── file.te │ ├── file_contexts │ ├── genfs_contexts │ ├── glyph_app.te │ ├── hal_fingerprint_default.te │ ├── hal_lineage_health.te │ ├── hal_lineage_powershare_default.te │ ├── hal_vibrator_default.te │ ├── hwservice_contexts │ ├── property_contexts │ ├── tee.te │ ├── vendor_init.te │ └── vendor_qti_init_shell.te ├── setup-makefiles.py ├── udfps ├── Android.bp └── UdfpsHandler.cpp └── vibrator ├── .clang-format ├── Android.bp ├── Vibrator.cpp ├── Vibrator.h ├── aac_vibra_function.h ├── android.hardware.vibrator.service.spacewar.rc ├── android.hardware.vibrator.service.spacewar.xml └── service.cpp /Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/Android.bp -------------------------------------------------------------------------------- /AndroidProducts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/AndroidProducts.mk -------------------------------------------------------------------------------- /BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/BoardConfig.mk -------------------------------------------------------------------------------- /board-info.txt: -------------------------------------------------------------------------------- 1 | require board=lahaina|Spacewar 2 | -------------------------------------------------------------------------------- /config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/config.fs -------------------------------------------------------------------------------- /configs/audio/audio_effects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/audio/audio_effects.xml -------------------------------------------------------------------------------- /configs/audio/audio_platform_info_qrd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/audio/audio_platform_info_qrd.xml -------------------------------------------------------------------------------- /configs/audio/audio_platform_info_yupikqrd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/audio/audio_platform_info_yupikqrd.xml -------------------------------------------------------------------------------- /configs/audio/audio_policy_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/audio/audio_policy_configuration.xml -------------------------------------------------------------------------------- /configs/audio/audio_policy_configuration_a2dp_offload_disabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/audio/audio_policy_configuration_a2dp_offload_disabled.xml -------------------------------------------------------------------------------- /configs/audio/mixer_paths_yupikqrd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/audio/mixer_paths_yupikqrd.xml -------------------------------------------------------------------------------- /configs/media/media_codecs_performance_yupik_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/media/media_codecs_performance_yupik_v1.xml -------------------------------------------------------------------------------- /configs/media/media_codecs_yupik_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/media/media_codecs_yupik_v1.xml -------------------------------------------------------------------------------- /configs/media/media_profiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/media/media_profiles.xml -------------------------------------------------------------------------------- /configs/media/media_profiles_V1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/media/media_profiles_V1_0.xml -------------------------------------------------------------------------------- /configs/media/media_profiles_vendor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/media/media_profiles_vendor.xml -------------------------------------------------------------------------------- /configs/media/media_profiles_yupik_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/media/media_profiles_yupik_v1.xml -------------------------------------------------------------------------------- /configs/permissions/privapp-permissions-hotword.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/permissions/privapp-permissions-hotword.xml -------------------------------------------------------------------------------- /configs/public.libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/public.libraries.txt -------------------------------------------------------------------------------- /configs/sensors/hals.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/sensors/hals.conf -------------------------------------------------------------------------------- /configs/vintf/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/vintf/manifest.xml -------------------------------------------------------------------------------- /configs/vintf/vendor_framework_compatibility_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/vintf/vendor_framework_compatibility_matrix.xml -------------------------------------------------------------------------------- /configs/wifi/WCNSS_qcom_cfg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/wifi/WCNSS_qcom_cfg.ini -------------------------------------------------------------------------------- /configs/wifi/p2p_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/wifi/p2p_supplicant_overlay.conf -------------------------------------------------------------------------------- /configs/wifi/wpa_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/configs/wifi/wpa_supplicant_overlay.conf -------------------------------------------------------------------------------- /device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/device.mk -------------------------------------------------------------------------------- /extract-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/extract-files.py -------------------------------------------------------------------------------- /lineage.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/lineage.dependencies -------------------------------------------------------------------------------- /lineage_Spacewar.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/lineage_Spacewar.mk -------------------------------------------------------------------------------- /modules.load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/modules.load -------------------------------------------------------------------------------- /modules.load.recovery: -------------------------------------------------------------------------------- 1 | fts_tp.ko 2 | -------------------------------------------------------------------------------- /overlay-lineage/lineage-sdk/lineage/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/overlay-lineage/lineage-sdk/lineage/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay-lineage/lineage-sdk/packages/LineageSettingsProvider/res/values/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/overlay-lineage/lineage-sdk/packages/LineageSettingsProvider/res/values/defaults.xml -------------------------------------------------------------------------------- /overlay-lineage/packages/apps/Aperture/app/src/main/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/overlay-lineage/packages/apps/Aperture/app/src/main/res/values/config.xml -------------------------------------------------------------------------------- /overlay-lineage/packages/apps/Dialer/java/com/android/dialer/callrecord/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/overlay-lineage/packages/apps/Dialer/java/com/android/dialer/callrecord/res/values/config.xml -------------------------------------------------------------------------------- /overlay-lineage/packages/apps/Settings/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/overlay-lineage/packages/apps/Settings/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/overlay/frameworks/base/core/res/res/values-land/dimens.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/overlay/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/overlay/frameworks/base/core/res/res/values/dimens.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/xml/power_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/overlay/frameworks/base/core/res/res/xml/power_profile.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SettingsProvider/res/values/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/overlay/frameworks/base/packages/SettingsProvider/res/values/defaults.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SystemUI/res/values-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/overlay/frameworks/base/packages/SystemUI/res/values-land/dimens.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SystemUI/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/overlay/frameworks/base/packages/SystemUI/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SystemUI/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/overlay/frameworks/base/packages/SystemUI/res/values/dimens.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/overlay/packages/apps/Settings/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/services/Telephony/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/overlay/packages/services/Telephony/res/values/config.xml -------------------------------------------------------------------------------- /properties/odm.prop: -------------------------------------------------------------------------------- 1 | # ODM 2 | ro.vendor.qti.va_odm.support=1 3 | -------------------------------------------------------------------------------- /properties/product.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/properties/product.prop -------------------------------------------------------------------------------- /properties/system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/properties/system.prop -------------------------------------------------------------------------------- /properties/system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/properties/system_ext.prop -------------------------------------------------------------------------------- /properties/vendor.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/properties/vendor.prop -------------------------------------------------------------------------------- /proprietary-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/proprietary-files.txt -------------------------------------------------------------------------------- /proprietary-firmware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/proprietary-firmware.txt -------------------------------------------------------------------------------- /rootdir/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/rootdir/Android.bp -------------------------------------------------------------------------------- /rootdir/bin/init.class_main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/rootdir/bin/init.class_main.sh -------------------------------------------------------------------------------- /rootdir/bin/init.kernel.post_boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/rootdir/bin/init.kernel.post_boot.sh -------------------------------------------------------------------------------- /rootdir/bin/init.qcom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/rootdir/bin/init.qcom.sh -------------------------------------------------------------------------------- /rootdir/bin/init.qti.kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/rootdir/bin/init.qti.kernel.sh -------------------------------------------------------------------------------- /rootdir/etc/fstab.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/rootdir/etc/fstab.default -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/rootdir/etc/init.qcom.rc -------------------------------------------------------------------------------- /rootdir/etc/init.qti.kernel.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/rootdir/etc/init.qti.kernel.rc -------------------------------------------------------------------------------- /rootdir/etc/init.recovery.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/rootdir/etc/init.recovery.qcom.rc -------------------------------------------------------------------------------- /rootdir/etc/init.target.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/rootdir/etc/init.target.rc -------------------------------------------------------------------------------- /rootdir/etc/ueventd.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/rootdir/etc/ueventd.qcom.rc -------------------------------------------------------------------------------- /rro_overlays/CarrierConfigOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/rro_overlays/CarrierConfigOverlay/Android.bp -------------------------------------------------------------------------------- /rro_overlays/CarrierConfigOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/rro_overlays/CarrierConfigOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /rro_overlays/CarrierConfigOverlay/res/xml/vendor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/rro_overlays/CarrierConfigOverlay/res/xml/vendor.xml -------------------------------------------------------------------------------- /rro_overlays/WifiResCommon/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/rro_overlays/WifiResCommon/Android.bp -------------------------------------------------------------------------------- /rro_overlays/WifiResCommon/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/rro_overlays/WifiResCommon/AndroidManifest.xml -------------------------------------------------------------------------------- /rro_overlays/WifiResCommon/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/rro_overlays/WifiResCommon/res/values/config.xml -------------------------------------------------------------------------------- /sensors/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sensors/Android.bp -------------------------------------------------------------------------------- /sensors/Sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sensors/Sensor.cpp -------------------------------------------------------------------------------- /sensors/Sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sensors/Sensor.h -------------------------------------------------------------------------------- /sensors/SensorsSubHal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sensors/SensorsSubHal.cpp -------------------------------------------------------------------------------- /sensors/SensorsSubHal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sensors/SensorsSubHal.h -------------------------------------------------------------------------------- /sepolicy/private/dontaudit.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/private/dontaudit.te -------------------------------------------------------------------------------- /sepolicy/private/glyph_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/private/glyph_app.te -------------------------------------------------------------------------------- /sepolicy/private/odrefresh.te: -------------------------------------------------------------------------------- 1 | allow odrefresh self:capability kill; 2 | -------------------------------------------------------------------------------- /sepolicy/private/property_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/private/property_contexts -------------------------------------------------------------------------------- /sepolicy/private/seapp_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/private/seapp_contexts -------------------------------------------------------------------------------- /sepolicy/public/glyph_app.te: -------------------------------------------------------------------------------- 1 | type glyph_app, domain; -------------------------------------------------------------------------------- /sepolicy/public/property.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/public/property.te -------------------------------------------------------------------------------- /sepolicy/vendor/device.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/vendor/device.te -------------------------------------------------------------------------------- /sepolicy/vendor/file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/vendor/file.te -------------------------------------------------------------------------------- /sepolicy/vendor/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/vendor/file_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/genfs_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/vendor/genfs_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/glyph_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/vendor/glyph_app.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_fingerprint_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/vendor/hal_fingerprint_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_lineage_health.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/vendor/hal_lineage_health.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_lineage_powershare_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/vendor/hal_lineage_powershare_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_vibrator_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/vendor/hal_vibrator_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hwservice_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/vendor/hwservice_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/property_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/vendor/property_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/tee.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/vendor/tee.te -------------------------------------------------------------------------------- /sepolicy/vendor/vendor_init.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/vendor/vendor_init.te -------------------------------------------------------------------------------- /sepolicy/vendor/vendor_qti_init_shell.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/sepolicy/vendor/vendor_qti_init_shell.te -------------------------------------------------------------------------------- /setup-makefiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/setup-makefiles.py -------------------------------------------------------------------------------- /udfps/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/udfps/Android.bp -------------------------------------------------------------------------------- /udfps/UdfpsHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/udfps/UdfpsHandler.cpp -------------------------------------------------------------------------------- /vibrator/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/vibrator/.clang-format -------------------------------------------------------------------------------- /vibrator/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/vibrator/Android.bp -------------------------------------------------------------------------------- /vibrator/Vibrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/vibrator/Vibrator.cpp -------------------------------------------------------------------------------- /vibrator/Vibrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/vibrator/Vibrator.h -------------------------------------------------------------------------------- /vibrator/aac_vibra_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/vibrator/aac_vibra_function.h -------------------------------------------------------------------------------- /vibrator/android.hardware.vibrator.service.spacewar.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/vibrator/android.hardware.vibrator.service.spacewar.rc -------------------------------------------------------------------------------- /vibrator/android.hardware.vibrator.service.spacewar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/vibrator/android.hardware.vibrator.service.spacewar.xml -------------------------------------------------------------------------------- /vibrator/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_nothing_Spacewar/HEAD/vibrator/service.cpp --------------------------------------------------------------------------------