This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
device_motorola_sanders-lin…/configs/check_features.sh
Vachounet f494fbc72d sanders: update post-install script
* Permissions moved to vendor
* Fix deep sleep issue on variants without NFC

Change-Id: Ie5a24a3debe638a3f491d12aa62bf1775b955972
2018-01-19 01:20:04 -02:00

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