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.
This commit is contained in:
Song Fuchang 2018-06-17 22:54:50 +08:00 committed by GitHub
parent af1b960ff9
commit f62647ea33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@
android:versionName="1.0">
<overlay android:targetPackage="android"
android:requiredSystemPropertyName="ro.vendor.build.fingerprint"
android:requiredSystemPropertyValue="+Xiaomi/polaris"
android:requiredSystemPropertyValue="+Xiaomi/polaris*"
android:priority="13"
android:isStatic="true" />
</manifest>