-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DRG_sprout: move some overlays to rro_overlays
workaround for some overlays not having effect
- Loading branch information
Showing
14 changed files
with
59 additions
and
0 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 |
---|---|---|
|
@@ -442,9 +442,12 @@ PRODUCT_PACKAGES += \ | |
# Wi-Fi | ||
PRODUCT_PACKAGES += \ | ||
[email protected] \ | ||
CarrierConfigOverlay \ | ||
FrameworkOverlay \ | ||
libwpa_client \ | ||
hostapd \ | ||
TetheringConfigOverlay \ | ||
SystemUIOverlay \ | ||
wpa_supplicant \ | ||
wpa_supplicant.conf | ||
|
||
|
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,7 @@ | ||
runtime_resource_overlay { | ||
name: "CarrierConfigOverlay", | ||
theme: "CarrierConfigOverlay", | ||
certificate: "platform", | ||
sdk_version: "current", | ||
product_specific: 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,11 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.android.drgcarrierconfigoverlay" | ||
android:versionCode="1" | ||
android:versionName="1.0"> | ||
<application android:hasCode="false" /> | ||
<overlay | ||
android:targetPackage="com.android.carrierconfig" | ||
android:targetName="CarrierConfig" | ||
android:isStatic="true" | ||
android:priority="50"/> | ||
</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,7 @@ | ||
runtime_resource_overlay { | ||
name: "FrameworkOverlay", | ||
theme: "FrameworkOverlay", | ||
certificate: "platform", | ||
sdk_version: "current", | ||
product_specific: 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,11 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.android.drgframeworkoverlay" | ||
android:versionCode="1" | ||
android:versionName="1.0"> | ||
<application android:hasCode="false" /> | ||
<overlay | ||
android:targetPackage="android" | ||
android:targetName="framework" | ||
android:isStatic="true" | ||
android:priority="50"/> | ||
</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,7 @@ | ||
runtime_resource_overlay { | ||
name: "SystemUIOverlay", | ||
theme: "SystemUIOverlay", | ||
certificate: "platform", | ||
sdk_version: "current", | ||
product_specific: 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,11 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.android.drgsystemuioverlay" | ||
android:versionCode="1" | ||
android:versionName="1.0"> | ||
<application android:hasCode="false" /> | ||
<overlay | ||
android:targetPackage="com.android.systemui" | ||
android:targetName="SystemUI" | ||
android:isStatic="true" | ||
android:priority="50"/> | ||
</manifest> |
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