Add device gyro support

This commit is contained in:
Waterdish
2024-02-11 23:54:22 -08:00
parent f660d978fc
commit f798f58a2d
3 changed files with 8 additions and 3 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ android {
minSdkVersion 18 minSdkVersion 18
targetSdkVersion 31 targetSdkVersion 31
versionCode 4 versionCode 4
versionName "1.1.3" versionName "1.1.4"
externalNativeBuild { externalNativeBuild {
//ndkBuild { //ndkBuild {
// arguments "APP_PLATFORM=android-23" // arguments "APP_PLATFORM=android-23"
+6 -1
View File
@@ -5,7 +5,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dishii.soh" package="com.dishii.soh"
android:versionCode="4" android:versionCode="4"
android:versionName="1.1.3" android:versionName="1.1.4"
android:installLocation="auto"> android:installLocation="auto">
<!-- OpenGL ES 3.0 --> <!-- OpenGL ES 3.0 -->
@@ -32,6 +32,11 @@
android:name="android.hardware.type.pc" android:name="android.hardware.type.pc"
android:required="false" /> android:required="false" />
<!-- Gyroscope support -->
<uses-feature
android:name="android.hardware.sensor.gyroscope"
android:required="false"/>
<!-- Audio recording support --> <!-- Audio recording support -->
<!-- if you want to capture audio, uncomment this. --> <!-- if you want to capture audio, uncomment this. -->
<!-- <uses-feature <!-- <uses-feature