├── Android.bp ├── BoardConfigCommon.mk ├── als ├── Android.bp ├── aidl_api │ └── vendor.lineage.oplus_als │ │ ├── 1 │ │ ├── .hash │ │ └── vendor │ │ │ └── lineage │ │ │ └── oplus_als │ │ │ ├── AreaRgbCaptureResult.aidl │ │ │ └── IAreaCapture.aidl │ │ └── current │ │ └── vendor │ │ └── lineage │ │ └── oplus_als │ │ ├── AreaRgbCaptureResult.aidl │ │ └── IAreaCapture.aidl ├── default │ ├── .clang-format │ ├── Android.bp │ ├── AreaCapture.cpp │ ├── AreaCapture.h │ ├── main.cpp │ ├── vendor.lineage.oplus_als.service.rc │ └── vendor.lineage.oplus_als.service.xml └── vendor │ └── lineage │ └── oplus_als │ ├── AreaRgbCaptureResult.aidl │ └── IAreaCapture.aidl ├── audio ├── audio_io_policy.conf ├── audio_policy_configuration.xml ├── audio_policy_configuration_a2dp_offload_disabled.xml └── sound_trigger_platform_info.xml ├── blob-patches ├── PowerOffAlarm.patch ├── manifest_oplus_fingerprint.patch └── oplus-ims-ext.patch ├── camera_helper ├── Android.bp ├── AndroidManifest.xml ├── proguard.flags ├── res │ ├── values-ar │ │ └── strings.xml │ ├── values-ast-rES │ │ └── strings.xml │ ├── values-az │ │ └── strings.xml │ ├── values-be │ │ └── strings.xml │ ├── values-bg │ │ └── strings.xml │ ├── values-br-rFR │ │ └── strings.xml │ ├── values-ca │ │ └── strings.xml │ ├── values-cs │ │ └── strings.xml │ ├── values-cy │ │ └── strings.xml │ ├── values-da │ │ └── strings.xml │ ├── values-de │ │ └── strings.xml │ ├── values-el │ │ └── strings.xml │ ├── values-en-rAU │ │ └── strings.xml │ ├── values-en-rCA │ │ └── strings.xml │ ├── values-en-rGB │ │ └── strings.xml │ ├── values-en-rIN │ │ └── strings.xml │ ├── values-es-rUS │ │ └── strings.xml │ ├── values-es │ │ └── strings.xml │ ├── values-et │ │ └── strings.xml │ ├── values-fa │ │ └── strings.xml │ ├── values-fi │ │ └── strings.xml │ ├── values-fr │ │ └── strings.xml │ ├── values-fur-rIT │ │ └── strings.xml │ ├── values-fy-rNL │ │ └── strings.xml │ ├── values-ga-rIE │ │ └── strings.xml │ ├── values-gd │ │ └── strings.xml │ ├── values-gl │ │ └── strings.xml │ ├── values-hu │ │ └── strings.xml │ ├── values-in │ │ └── strings.xml │ ├── values-is │ │ └── strings.xml │ ├── values-it │ │ └── strings.xml │ ├── values-iw │ │ └── strings.xml │ ├── values-ja │ │ └── strings.xml │ ├── values-ka │ │ └── strings.xml │ ├── values-kab-rDZ │ │ └── strings.xml │ ├── values-ko │ │ └── strings.xml │ ├── values-nl │ │ └── strings.xml │ ├── values-pl │ │ └── strings.xml │ ├── values-pt-rBR │ │ └── strings.xml │ ├── values-pt-rPT │ │ └── strings.xml │ ├── values-ro │ │ └── strings.xml │ ├── values-ru │ │ └── strings.xml │ ├── values-sk │ │ └── strings.xml │ ├── values-sl │ │ └── strings.xml │ ├── values-sq │ │ └── strings.xml │ ├── values-sv │ │ └── strings.xml │ ├── values-ta │ │ └── strings.xml │ ├── values-th │ │ └── strings.xml │ ├── values-tr │ │ └── strings.xml │ ├── values-ug │ │ └── strings.xml │ ├── values-uk │ │ └── strings.xml │ ├── values-vi │ │ └── strings.xml │ ├── values-zh-rCN │ │ └── strings.xml │ ├── values-zh-rTW │ │ └── strings.xml │ └── values │ │ └── strings.xml └── src │ └── org │ └── lineageos │ └── camerahelper │ ├── BootCompletedReceiver.java │ ├── CameraMotorController.java │ ├── CameraMotorService.java │ ├── FallSensor.java │ ├── FallSensorService.java │ └── KeyHandler.java ├── common.mk ├── config.fs ├── configs ├── gps.conf ├── hals.conf ├── powerhint.json └── privapp-permissions-hotword.xml ├── extract-files.py ├── init ├── Android.bp ├── init.class_main.sh ├── init.oplus.rc ├── init.oplus.sh ├── init.qcom.early_boot.sh ├── init.qcom.rc ├── init.qcom.recovery.rc ├── init.qcom.sh ├── init.target.power.rc ├── init.target.rc └── ueventd.qcom.rc ├── keylayout ├── gf_input.kl └── gpio-keys.kl ├── lineage.dependencies ├── manifest.xml ├── media ├── media_codecs_c2.xml └── media_codecs_performance_c2.xml ├── odm.prop ├── overlay-lineage ├── hardware │ └── oplus │ │ └── doze │ │ └── res │ │ └── values │ │ └── config.xml ├── lineage-sdk │ ├── lineage │ │ └── res │ │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ └── packages │ │ └── LineageSettingsProvider │ │ └── res │ │ └── values │ │ └── defaults.xml └── packages │ └── apps │ └── Dialer │ └── java │ └── com │ └── android │ └── dialer │ └── callrecord │ └── res │ └── values │ └── config.xml ├── overlay ├── CarrierConfigResCommon │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── xml │ │ └── vendor.xml ├── FrameworksResTarget │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── config.xml ├── OPlusFrameworksResCommon │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ ├── values-mcc310-mnc590 │ │ └── config.xml │ │ ├── values-mcc310-mnc890 │ │ └── config.xml │ │ ├── values-mcc311-mnc270 │ │ └── config.xml │ │ ├── values-mcc311-mnc480 │ │ └── config.xml │ │ ├── values-mcc312-mnc770 │ │ └── config.xml │ │ └── values │ │ └── config.xml ├── OPlusSettingsResCommon │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── config.xml └── OPlusSystemUIResCommon │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ └── values │ └── config.xml ├── product.prop ├── proprietary-files.txt ├── sensors ├── .clang-format ├── AlsCorrection.cpp ├── AlsCorrection.h ├── Android.bp ├── HalProxy.cpp ├── HalProxyCallback.cpp ├── android.hardware.sensors@2.1-oneplus_msmnile.xml ├── android.hardware.sensors@2.1-service-oneplus_msmnile.rc └── service.cpp ├── sepolicy ├── SEPolicy.mk ├── private │ ├── camera_helper_app.te │ ├── file_contexts │ ├── hal_lineage_oplus_als_aidl.te │ ├── property_contexts │ ├── seapp_contexts │ ├── service_contexts │ └── system_server.te ├── public │ ├── attributes │ ├── file.te │ ├── property.te │ └── service.te └── vendor │ ├── file_contexts │ ├── genfs_contexts │ ├── hal_sensors_default.te │ └── vendor_init.te ├── setup-makefiles.py ├── system_ext.prop ├── touch └── include │ └── TouchscreenGestureConfig.h └── vendor.prop /Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/Android.bp -------------------------------------------------------------------------------- /BoardConfigCommon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/BoardConfigCommon.mk -------------------------------------------------------------------------------- /als/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/als/Android.bp -------------------------------------------------------------------------------- /als/aidl_api/vendor.lineage.oplus_als/1/.hash: -------------------------------------------------------------------------------- 1 | adce6a8cc870bbfa03fa544897422ba03b47cbb0 -------------------------------------------------------------------------------- /als/aidl_api/vendor.lineage.oplus_als/1/vendor/lineage/oplus_als/AreaRgbCaptureResult.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/als/aidl_api/vendor.lineage.oplus_als/1/vendor/lineage/oplus_als/AreaRgbCaptureResult.aidl -------------------------------------------------------------------------------- /als/aidl_api/vendor.lineage.oplus_als/1/vendor/lineage/oplus_als/IAreaCapture.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/als/aidl_api/vendor.lineage.oplus_als/1/vendor/lineage/oplus_als/IAreaCapture.aidl -------------------------------------------------------------------------------- /als/aidl_api/vendor.lineage.oplus_als/current/vendor/lineage/oplus_als/AreaRgbCaptureResult.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/als/aidl_api/vendor.lineage.oplus_als/current/vendor/lineage/oplus_als/AreaRgbCaptureResult.aidl -------------------------------------------------------------------------------- /als/aidl_api/vendor.lineage.oplus_als/current/vendor/lineage/oplus_als/IAreaCapture.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/als/aidl_api/vendor.lineage.oplus_als/current/vendor/lineage/oplus_als/IAreaCapture.aidl -------------------------------------------------------------------------------- /als/default/.clang-format: -------------------------------------------------------------------------------- 1 | ../../../../../build/soong/scripts/system-clang-format -------------------------------------------------------------------------------- /als/default/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/als/default/Android.bp -------------------------------------------------------------------------------- /als/default/AreaCapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/als/default/AreaCapture.cpp -------------------------------------------------------------------------------- /als/default/AreaCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/als/default/AreaCapture.h -------------------------------------------------------------------------------- /als/default/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/als/default/main.cpp -------------------------------------------------------------------------------- /als/default/vendor.lineage.oplus_als.service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/als/default/vendor.lineage.oplus_als.service.rc -------------------------------------------------------------------------------- /als/default/vendor.lineage.oplus_als.service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/als/default/vendor.lineage.oplus_als.service.xml -------------------------------------------------------------------------------- /als/vendor/lineage/oplus_als/AreaRgbCaptureResult.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/als/vendor/lineage/oplus_als/AreaRgbCaptureResult.aidl -------------------------------------------------------------------------------- /als/vendor/lineage/oplus_als/IAreaCapture.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/als/vendor/lineage/oplus_als/IAreaCapture.aidl -------------------------------------------------------------------------------- /audio/audio_io_policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/audio/audio_io_policy.conf -------------------------------------------------------------------------------- /audio/audio_policy_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/audio/audio_policy_configuration.xml -------------------------------------------------------------------------------- /audio/audio_policy_configuration_a2dp_offload_disabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/audio/audio_policy_configuration_a2dp_offload_disabled.xml -------------------------------------------------------------------------------- /audio/sound_trigger_platform_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/audio/sound_trigger_platform_info.xml -------------------------------------------------------------------------------- /blob-patches/PowerOffAlarm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/blob-patches/PowerOffAlarm.patch -------------------------------------------------------------------------------- /blob-patches/manifest_oplus_fingerprint.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/blob-patches/manifest_oplus_fingerprint.patch -------------------------------------------------------------------------------- /blob-patches/oplus-ims-ext.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/blob-patches/oplus-ims-ext.patch -------------------------------------------------------------------------------- /camera_helper/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/Android.bp -------------------------------------------------------------------------------- /camera_helper/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/AndroidManifest.xml -------------------------------------------------------------------------------- /camera_helper/proguard.flags: -------------------------------------------------------------------------------- 1 | -keep class org.lineageos.camerahelper.* { 2 | *; 3 | } 4 | -------------------------------------------------------------------------------- /camera_helper/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-ar/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-ast-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-ast-rES/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-az/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-az/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-be/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-be/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-bg/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-br-rFR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-br-rFR/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-ca/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-cs/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-cy/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-cy/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-da/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-de/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-el/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-en-rAU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-en-rAU/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-en-rCA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-en-rCA/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-en-rGB/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-en-rGB/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-en-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-en-rIN/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-es-rUS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-es-rUS/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-es/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-et/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-fa/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-fi/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-fr/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-fur-rIT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-fur-rIT/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-fy-rNL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-fy-rNL/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-ga-rIE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-ga-rIE/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-gd/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-gd/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-gl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-gl/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-hu/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-in/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-is/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-is/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-it/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-iw/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-ja/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-ka/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-ka/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-kab-rDZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-kab-rDZ/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-ko/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-nl/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-pl/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-ro/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-ru/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-sk/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-sl/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-sq/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-sq/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-sv/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-ta/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-ta/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-th/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-tr/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-ug/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-ug/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-uk/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-vi/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /camera_helper/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/res/values/strings.xml -------------------------------------------------------------------------------- /camera_helper/src/org/lineageos/camerahelper/BootCompletedReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/src/org/lineageos/camerahelper/BootCompletedReceiver.java -------------------------------------------------------------------------------- /camera_helper/src/org/lineageos/camerahelper/CameraMotorController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/src/org/lineageos/camerahelper/CameraMotorController.java -------------------------------------------------------------------------------- /camera_helper/src/org/lineageos/camerahelper/CameraMotorService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/src/org/lineageos/camerahelper/CameraMotorService.java -------------------------------------------------------------------------------- /camera_helper/src/org/lineageos/camerahelper/FallSensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/src/org/lineageos/camerahelper/FallSensor.java -------------------------------------------------------------------------------- /camera_helper/src/org/lineageos/camerahelper/FallSensorService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/src/org/lineageos/camerahelper/FallSensorService.java -------------------------------------------------------------------------------- /camera_helper/src/org/lineageos/camerahelper/KeyHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/camera_helper/src/org/lineageos/camerahelper/KeyHandler.java -------------------------------------------------------------------------------- /common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/common.mk -------------------------------------------------------------------------------- /config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/config.fs -------------------------------------------------------------------------------- /configs/gps.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/configs/gps.conf -------------------------------------------------------------------------------- /configs/hals.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/configs/hals.conf -------------------------------------------------------------------------------- /configs/powerhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/configs/powerhint.json -------------------------------------------------------------------------------- /configs/privapp-permissions-hotword.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/configs/privapp-permissions-hotword.xml -------------------------------------------------------------------------------- /extract-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/extract-files.py -------------------------------------------------------------------------------- /init/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/init/Android.bp -------------------------------------------------------------------------------- /init/init.class_main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/init/init.class_main.sh -------------------------------------------------------------------------------- /init/init.oplus.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/init/init.oplus.rc -------------------------------------------------------------------------------- /init/init.oplus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/init/init.oplus.sh -------------------------------------------------------------------------------- /init/init.qcom.early_boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/init/init.qcom.early_boot.sh -------------------------------------------------------------------------------- /init/init.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/init/init.qcom.rc -------------------------------------------------------------------------------- /init/init.qcom.recovery.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/init/init.qcom.recovery.rc -------------------------------------------------------------------------------- /init/init.qcom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/init/init.qcom.sh -------------------------------------------------------------------------------- /init/init.target.power.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/init/init.target.power.rc -------------------------------------------------------------------------------- /init/init.target.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/init/init.target.rc -------------------------------------------------------------------------------- /init/ueventd.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/init/ueventd.qcom.rc -------------------------------------------------------------------------------- /keylayout/gf_input.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/keylayout/gf_input.kl -------------------------------------------------------------------------------- /keylayout/gpio-keys.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/keylayout/gpio-keys.kl -------------------------------------------------------------------------------- /lineage.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/lineage.dependencies -------------------------------------------------------------------------------- /manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/manifest.xml -------------------------------------------------------------------------------- /media/media_codecs_c2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/media/media_codecs_c2.xml -------------------------------------------------------------------------------- /media/media_codecs_performance_c2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/media/media_codecs_performance_c2.xml -------------------------------------------------------------------------------- /odm.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/odm.prop -------------------------------------------------------------------------------- /overlay-lineage/hardware/oplus/doze/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay-lineage/hardware/oplus/doze/res/values/config.xml -------------------------------------------------------------------------------- /overlay-lineage/lineage-sdk/lineage/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/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_oneplus_sm8150-common/HEAD/overlay-lineage/lineage-sdk/packages/LineageSettingsProvider/res/values/defaults.xml -------------------------------------------------------------------------------- /overlay-lineage/packages/apps/Dialer/java/com/android/dialer/callrecord/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay-lineage/packages/apps/Dialer/java/com/android/dialer/callrecord/res/values/config.xml -------------------------------------------------------------------------------- /overlay/CarrierConfigResCommon/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/CarrierConfigResCommon/Android.bp -------------------------------------------------------------------------------- /overlay/CarrierConfigResCommon/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/CarrierConfigResCommon/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/CarrierConfigResCommon/res/xml/vendor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/CarrierConfigResCommon/res/xml/vendor.xml -------------------------------------------------------------------------------- /overlay/FrameworksResTarget/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/FrameworksResTarget/Android.bp -------------------------------------------------------------------------------- /overlay/FrameworksResTarget/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/FrameworksResTarget/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/FrameworksResTarget/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/FrameworksResTarget/res/values/config.xml -------------------------------------------------------------------------------- /overlay/OPlusFrameworksResCommon/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/OPlusFrameworksResCommon/Android.bp -------------------------------------------------------------------------------- /overlay/OPlusFrameworksResCommon/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/OPlusFrameworksResCommon/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/OPlusFrameworksResCommon/res/values-mcc310-mnc590/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/OPlusFrameworksResCommon/res/values-mcc310-mnc590/config.xml -------------------------------------------------------------------------------- /overlay/OPlusFrameworksResCommon/res/values-mcc310-mnc890/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/OPlusFrameworksResCommon/res/values-mcc310-mnc890/config.xml -------------------------------------------------------------------------------- /overlay/OPlusFrameworksResCommon/res/values-mcc311-mnc270/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/OPlusFrameworksResCommon/res/values-mcc311-mnc270/config.xml -------------------------------------------------------------------------------- /overlay/OPlusFrameworksResCommon/res/values-mcc311-mnc480/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/OPlusFrameworksResCommon/res/values-mcc311-mnc480/config.xml -------------------------------------------------------------------------------- /overlay/OPlusFrameworksResCommon/res/values-mcc312-mnc770/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/OPlusFrameworksResCommon/res/values-mcc312-mnc770/config.xml -------------------------------------------------------------------------------- /overlay/OPlusFrameworksResCommon/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/OPlusFrameworksResCommon/res/values/config.xml -------------------------------------------------------------------------------- /overlay/OPlusSettingsResCommon/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/OPlusSettingsResCommon/Android.bp -------------------------------------------------------------------------------- /overlay/OPlusSettingsResCommon/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/OPlusSettingsResCommon/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/OPlusSettingsResCommon/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/OPlusSettingsResCommon/res/values/config.xml -------------------------------------------------------------------------------- /overlay/OPlusSystemUIResCommon/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/OPlusSystemUIResCommon/Android.bp -------------------------------------------------------------------------------- /overlay/OPlusSystemUIResCommon/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/OPlusSystemUIResCommon/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/OPlusSystemUIResCommon/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/overlay/OPlusSystemUIResCommon/res/values/config.xml -------------------------------------------------------------------------------- /product.prop: -------------------------------------------------------------------------------- 1 | # Audio 2 | af.fast_track_multiplier=1 3 | 4 | # eBPF 5 | ro.bpf.kver_override=5.4.299 6 | -------------------------------------------------------------------------------- /proprietary-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/proprietary-files.txt -------------------------------------------------------------------------------- /sensors/.clang-format: -------------------------------------------------------------------------------- 1 | ../../../../build/soong/scripts/system-clang-format -------------------------------------------------------------------------------- /sensors/AlsCorrection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sensors/AlsCorrection.cpp -------------------------------------------------------------------------------- /sensors/AlsCorrection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sensors/AlsCorrection.h -------------------------------------------------------------------------------- /sensors/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sensors/Android.bp -------------------------------------------------------------------------------- /sensors/HalProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sensors/HalProxy.cpp -------------------------------------------------------------------------------- /sensors/HalProxyCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sensors/HalProxyCallback.cpp -------------------------------------------------------------------------------- /sensors/android.hardware.sensors@2.1-oneplus_msmnile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sensors/android.hardware.sensors@2.1-oneplus_msmnile.xml -------------------------------------------------------------------------------- /sensors/android.hardware.sensors@2.1-service-oneplus_msmnile.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sensors/android.hardware.sensors@2.1-service-oneplus_msmnile.rc -------------------------------------------------------------------------------- /sensors/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sensors/service.cpp -------------------------------------------------------------------------------- /sepolicy/SEPolicy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sepolicy/SEPolicy.mk -------------------------------------------------------------------------------- /sepolicy/private/camera_helper_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sepolicy/private/camera_helper_app.te -------------------------------------------------------------------------------- /sepolicy/private/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sepolicy/private/file_contexts -------------------------------------------------------------------------------- /sepolicy/private/hal_lineage_oplus_als_aidl.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sepolicy/private/hal_lineage_oplus_als_aidl.te -------------------------------------------------------------------------------- /sepolicy/private/property_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sepolicy/private/property_contexts -------------------------------------------------------------------------------- /sepolicy/private/seapp_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sepolicy/private/seapp_contexts -------------------------------------------------------------------------------- /sepolicy/private/service_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sepolicy/private/service_contexts -------------------------------------------------------------------------------- /sepolicy/private/system_server.te: -------------------------------------------------------------------------------- 1 | rw_dir_file(system_server, sysfs_motor) 2 | -------------------------------------------------------------------------------- /sepolicy/public/attributes: -------------------------------------------------------------------------------- 1 | hal_attribute(lineage_oplus_als) 2 | -------------------------------------------------------------------------------- /sepolicy/public/file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sepolicy/public/file.te -------------------------------------------------------------------------------- /sepolicy/public/property.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sepolicy/public/property.te -------------------------------------------------------------------------------- /sepolicy/public/service.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sepolicy/public/service.te -------------------------------------------------------------------------------- /sepolicy/vendor/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sepolicy/vendor/file_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/genfs_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sepolicy/vendor/genfs_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/hal_sensors_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sepolicy/vendor/hal_sensors_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/vendor_init.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/sepolicy/vendor/vendor_init.te -------------------------------------------------------------------------------- /setup-makefiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/setup-makefiles.py -------------------------------------------------------------------------------- /system_ext.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/system_ext.prop -------------------------------------------------------------------------------- /touch/include/TouchscreenGestureConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/touch/include/TouchscreenGestureConfig.h -------------------------------------------------------------------------------- /vendor.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_oneplus_sm8150-common/HEAD/vendor.prop --------------------------------------------------------------------------------