st/oxr_android: Declare sensor usage in manifest

This commit is contained in:
Ryan Pavlik 2020-11-12 09:32:47 -06:00 committed by Lubosz Sarnecki
parent 635542f905
commit 7b5aad0be2

View file

@ -27,6 +27,17 @@
android:required="false" android:required="false"
android:version="1" /> android:version="1" />
<!-- for sensor access -->
<uses-feature
android:name="android.hardware.sensor.accelerometer"
android:required="false" />
<uses-feature
android:name="android.hardware.sensor.gyroscope"
android:required="false" />
<uses-feature
android:name="android.hardware.sensor.hifi_sensors"
android:required="false" />
<application <application
android:allowBackup="true" android:allowBackup="true"
android:extractNativeLibs="true" android:extractNativeLibs="true"