* Permissions moved to vendor * Fix deep sleep issue on variants without NFC Change-Id: Ie5a24a3debe638a3f491d12aa62bf1775b955972
15 lines
460 B
Bash
15 lines
460 B
Bash
#!/sbin/sh
|
|
|
|
sku=`getprop ro.boot.hardware.sku`
|
|
|
|
if [ "$sku" = "XT1687" ]; then
|
|
# XT1687 doesn't have NFC chip
|
|
rm /system/vendor/etc/permissions/android.hardware.nfc.xml
|
|
rm /system/vendor/etc/permissions/android.hardware.nfc.hce.xml
|
|
rm /system/vendor/etc/permissions/com.android.nfc_extras.xml
|
|
rm -r /system/app/NfcNci
|
|
else
|
|
# Only XT1687 variant got a compass
|
|
rm /system/vendor/etc/permissions/android.hardware.sensor.compass.xml
|
|
fi
|