-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
r5x: Convert overlays to rro_overlay
- Loading branch information
Showing
38 changed files
with
147 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,10 +7,6 @@ | |
# RealmeDirac | ||
$(call inherit-product, $(LOCAL_PATH)/app/RealmeDirac/dirac.mk) | ||
|
||
# Overlays | ||
DEVICE_PACKAGE_OVERLAYS += \ | ||
$(LOCAL_PATH)/overlay | ||
|
||
OVERRIDE_PRODUCT_COMPRESSED_APEX := false | ||
|
||
# Soong namespaces | ||
|
@@ -340,6 +336,18 @@ PRODUCT_PACKAGES += \ | |
libstagefrighthw \ | ||
[email protected] | ||
|
||
# Overlays | ||
PRODUCT_PACKAGES += \ | ||
CarrierConfigOverlay \ | ||
TelephonyOverlay \ | ||
SettingsProviderOveray \ | ||
SettingsOverlay \ | ||
SystemUIOverlay \ | ||
WifiOverlay \ | ||
FrameworksOverlay \ | ||
TetheringCOverlay \ | ||
BluetoothOverlay | ||
|
||
# Power | ||
PRODUCT_PACKAGES += \ | ||
android.hardware.power-service.r5x-libperfmgr \ | ||
|
@@ -429,10 +437,6 @@ PRODUCT_COPY_FILES += \ | |
frameworks/native/data/etc/android.hardware.sensor.proximity.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.proximity.xml \ | ||
frameworks/native/data/etc/android.hardware.sensor.stepcounter.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.stepcounter.xml | ||
|
||
# Tethering | ||
PRODUCT_PACKAGES += \ | ||
TetheringConfigOverlay | ||
|
||
# Tetheroffload | ||
PRODUCT_PACKAGES += \ | ||
ipacm \ | ||
|
@@ -468,7 +472,6 @@ PRODUCT_PACKAGES += \ | |
libwifi-hal-ctrl \ | ||
libwifi-hal-qcom \ | ||
libwpa_client \ | ||
WifiOverlay \ | ||
wpa_cli \ | ||
wpa_supplicant \ | ||
wpa_supplicant.conf \ | ||
|
5 changes: 0 additions & 5 deletions
5
overlay/frameworks/base/core/res/res/values/custom_config.xml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
23 changes: 0 additions & 23 deletions
23
overlay/packages/apps/CellBroadcastReceiver/res/values/config.xml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
runtime_resource_overlay { | ||
name: "BluetoothOverlay", | ||
theme: "BluetoothOverlay", | ||
sdk_version: "current", | ||
vendor: true, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
coreApp="true" | ||
package="com.android.bluetooth.overlay.realme_r5x"> | ||
<overlay android:targetPackage="com.android.bluetooth" android:targetName="BluetoothCustomization" android:isStatic="true" /> | ||
</manifest> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
runtime_resource_overlay { | ||
name: "CarrierConfigOverlay", | ||
theme: "CarrierConfigOverlay", | ||
sdk_version: "current", | ||
vendor: true, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
Copyright (C) 2022 The PixelExperience Project | ||
SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.android.carrierconfig.overlay.realme_r5x"> | ||
|
||
<overlay | ||
android:isStatic="true" | ||
android:priority="550" | ||
android:targetPackage="com.android.carrierconfig" /> | ||
</manifest> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
runtime_resource_overlay { | ||
name: "FrameworksOverlay", | ||
theme: "FrameworksOverlay", | ||
sdk_version: "current", | ||
vendor: true, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
Copyright (C) 2022 The PixelExperience Project | ||
SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.android.overlay.realme_r5x"> | ||
|
||
<overlay | ||
android:isStatic="true" | ||
android:priority="550" | ||
android:targetPackage="android" /> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
runtime_resource_overlay { | ||
name: "SettingsOverlay", | ||
theme: "SettingsOverlay", | ||
sdk_version: "current", | ||
vendor: true, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
Copyright (C) 2022 The PixelExperience Project | ||
SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.android.settings.overlay.realme_r5x"> | ||
|
||
<overlay | ||
android:isStatic="true" | ||
android:priority="550" | ||
android:targetPackage="com.android.settings" /> | ||
</manifest> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
runtime_resource_overlay { | ||
name: "SettingsProviderOverlay", | ||
theme: "SettingsProviderOverlay", | ||
sdk_version: "current", | ||
vendor: true, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
Copyright (C) 2022 The PixelExperience Project | ||
SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.settingsprovider.overlay.realme_r5x"> | ||
|
||
<overlay | ||
android:isStatic="true" | ||
android:priority="550" | ||
android:targetPackage="com.android.providers.settings" /> | ||
</manifest> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
runtime_resource_overlay { | ||
name: "SystemUIOverlay", | ||
theme: "SystemUIOverlay", | ||
sdk_version: "current", | ||
vendor: true, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
Copyright (C) 2022 The PixelExperience Project | ||
SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.android.systemui.overlay.realme_r5x"> | ||
|
||
<overlay | ||
android:isStatic="true" | ||
android:priority="550" | ||
android:targetPackage="com.android.systemui" /> | ||
</manifest> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
runtime_resource_overlay { | ||
name: "TelephonyOverlay", | ||
theme: "TelephonyOverlay", | ||
sdk_version: "current", | ||
vendor: true, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
Copyright (C) 2022 The PixelExperience Project | ||
SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.android.phone.overlay.realme_r5x"> | ||
|
||
<overlay | ||
android:isStatic="true" | ||
android:priority="550" | ||
android:targetPackage="com.android.phone" /> | ||
</manifest> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters