Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d8c58508 authored by Rohit Sekhar's avatar Rohit Sekhar Committed by Rohit Sekhar
Browse files

FP5: FrameworksResTarget: Import from oneplus/sm8350-common

parent 318df1dd
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -319,6 +319,7 @@ PRODUCT_PACKAGES += \
PRODUCT_PACKAGES += \
    CarrierConfigResCommon \
    FrameworksResCommon \
    FrameworksResTarget \
    SystemUIResCommon \
    TelephonyResCommon \
    WifiResCommon \
+9 −0
Original line number Diff line number Diff line
//
// Copyright (C) 2022 The LineageOS Project
// SPDX-License-Identifier: Apache-2.0
//

runtime_resource_overlay {
    name: "FrameworksResTarget",
    vendor: true,
}
+13 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2022 The LineageOS Project
     SPDX-License-Identifier: Apache-2.0
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="android.overlay.target">

    <overlay
        android:isStatic="true"
        android:priority="250"
        android:targetPackage="android" />
</manifest>
+64 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2022 The Linux Foundation
     SPDX-License-Identifier: BSD-3-Clause
-->
<resources>

    <!-- Whether a software navigation bar should be shown. NOTE: in the future this may be
         autodetected from the Configuration. -->
    <bool name="config_showNavigationBar">true</bool>

    <!-- When true use the linux /dev/input/event subsystem to detect the switch changes
         on the headphone/microphone jack. When false use the older uevent framework. -->
    <bool name="config_useDevInputEventForAudioJack">true</bool>

    <!-- Telephony qualified networks service package name to bind to by default. -->
    <string name="config_qualified_networks_service_package" translatable="false">vendor.qti.iwlan</string>

    <!-- IWLAN data service package name to bind to by default. If none is specified in an overlay, an
         empty string is passed in -->
    <string name="config_wlan_data_service_package" translatable="false">vendor.qti.iwlan</string>

    <!-- IWLAN network service package name to bind to by default. If none is specified in an overlay, an
         empty string is passed in -->
    <string name="config_wlan_network_service_package" translatable="false">vendor.qti.iwlan</string>

    <!-- Default files to pin via Pinner Service -->
    <string-array name="config_defaultPinnerServiceFiles">
        <item>/system/framework/arm64/boot-framework.oat</item>
        <item>/system/framework/arm/boot-framework.oat</item>
        <item>/apex/com.android.art/javalib/arm64/boot-core-libart.oat</item>
        <item>/apex/com.android.art/javalib/arm/boot-core-libart.oat</item>
        <item>/apex/com.android.art/javalib/arm64/boot-okhttp.oat</item>
        <item>/apex/com.android.art/javalib/arm/boot-okhttp.oat</item>
        <item>/apex/com.android.art/javalib/arm64/boot.vdex</item>
        <item>/apex/com.android.art/javalib/arm/boot.vdex</item>
        <item>/apex/com.android.art/javalib/arm64/boot-core-libart.vdex</item>
        <item>/apex/com.android.art/javalib/arm/boot-core-libart.vdex</item>
        <item>/apex/com.android.art/javalib/arm64/boot-core-libart.art</item>
        <item>/apex/com.android.art/javalib/arm/boot-core-libart.art</item>
        <item>/system/framework/framework-res.apk</item>
        <item>/system/lib64/libhwui.so</item>
        <item>/system/lib/libhwui.so</item>
        <item>/system/framework/boot-framework.vdex</item>
        <item>/system/framework/oat/arm64/services.vdex</item>
        <item>/system/framework/oat/arm64/services.odex</item>
        <item>/apex/com.android.art/javalib/arm64/boot.oat</item>
        <item>/apex/com.android.art/javalib/arm/boot.oat</item>
        <item>/system/framework/telephony-common.jar</item>
        <item>/system/framework/arm64/boot-telephony-common.art</item>
        <item>/system/lib64/libsurfaceflinger.so</item>
        <item>/apex/com.android.art/javalib/core-oj.jar</item>
        <item>/apex/com.android.art/javalib/core-libart.jar</item>
    </string-array>

    <!-- List of biometric sensors on the device, in decreasing strength. Consumed by AuthService
         when registering authenticators with BiometricService. Format must be ID:Modality:Strength,
         where: IDs are unique per device, Modality as defined in BiometricAuthenticator.java,
         and Strength as defined in Authenticators.java -->
    <string-array name="config_biometric_sensors" translatable="false">
        <item>0:2:15</item> <!-- ID0:Fingerprint:Strong -->
    </string-array>

</resources>