android_vendor_hardware_ove.../Moto/G7Play/AndroidManifest.xml
Daniel Roschka 4264b7e6b8
Add overlay for Motorola Moto G7 Play (channel)
This adds a hardware overlay for the Motorola Moto G7 Play. The
property values are taken directly from stock ROM. Properties which
matched the AOSP default values got removed, as well as some brightness
related properties which caused problems.

The `config_wifi_dual_band_support` and `status_bar_height_portrait`
properties got added to fix the supported wifi bands and set
the status bar to the height of the notch.

In `config_gpsParameters` the `XTRA_SERVER` properties got adjusted to
use Xtra3 instead of Xtra2 files.

The overlay works fine and has been tested on a device for over a week
now without any overlay related issues so far.
2020-03-03 22:18:16 +01:00

16 lines
570 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="me.phh.treble.overlay.moto.g7play"
android:versionCode="1"
android:versionName="1.0">
<!--
TESTS: Ignore ro.vendor.product.device
There is no vendor fingerprint
-->
<overlay android:targetPackage="android"
android:requiredSystemPropertyName="ro.vendor.product.device"
android:requiredSystemPropertyValue="channel"
android:priority="72"
android:isStatic="true" />
</manifest>