vendor_hardware_overlay/Xiaomi/MiMix2S/AndroidManifest.xml
Song Fuchang f62647ea33
Fix MiMix2S vendor matching pattern
According to http://man7.org/linux/man-pages/man7/glob.7.html, we need an asterisk `*` after the value in order to get an inexact matching.
2018-06-17 22:54:50 +08:00

11 lines
443 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="me.phh.treble.overlay.xiaomi.mimix2s"
android:versionCode="1"
android:versionName="1.0">
<overlay android:targetPackage="android"
android:requiredSystemPropertyName="ro.vendor.build.fingerprint"
android:requiredSystemPropertyValue="+Xiaomi/polaris*"
android:priority="13"
android:isStatic="true" />
</manifest>