Vladimir Komsiyski | d2c0597 | 2023-12-05 09:15:01 +0000 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | xmlns:tools="http://schemas.android.com/tools" |
| 3 | package="com.example.android.vdmdemo.client" |
| 4 | android:versionCode="1" |
| 5 | android:versionName="1.0"> |
| 6 | |
Vladimir Komsiyski | 9996ce3 | 2023-12-06 11:03:14 +0100 | [diff] [blame] | 7 | <uses-sdk |
| 8 | android:minSdkVersion="33" |
| 9 | android:targetSdkVersion="33" /> |
Vladimir Komsiyski | d2c0597 | 2023-12-05 09:15:01 +0000 | [diff] [blame] | 10 | |
Vladimir Komsiyski | 9996ce3 | 2023-12-06 11:03:14 +0100 | [diff] [blame] | 11 | <uses-permission |
| 12 | android:name="android.permission.HIGH_SAMPLING_RATE_SENSORS" |
| 13 | tools:ignore="HighSamplingRate" /> |
Marvin Ramin | a66e4fa | 2023-12-20 15:20:37 +0100 | [diff] [blame] | 14 | <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
Jan Sebechlebsky | ec2b1e8 | 2024-01-16 10:38:42 +0100 | [diff] [blame] | 15 | <uses-permission android:name="android.permission.CAMERA" /> |
Vladimir Komsiyski | d2c0597 | 2023-12-05 09:15:01 +0000 | [diff] [blame] | 16 | |
Vladimir Komsiyski | 9996ce3 | 2023-12-06 11:03:14 +0100 | [diff] [blame] | 17 | <application |
| 18 | android:name=".VdmClientApplication" |
| 19 | android:label="@string/app_name" |
| 20 | android:theme="@style/Theme.AppCompat.Light.NoActionBar"> |
| 21 | <activity |
| 22 | android:name=".MainActivity" |
Vladimir Komsiyski | 35c8224 | 2023-12-20 14:50:50 +0100 | [diff] [blame] | 23 | android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout" |
Vladimir Komsiyski | 28e255a | 2023-12-14 13:46:19 +0100 | [diff] [blame] | 24 | android:windowSoftInputMode="adjustPan" |
Vladimir Komsiyski | 9996ce3 | 2023-12-06 11:03:14 +0100 | [diff] [blame] | 25 | android:exported="true"> |
| 26 | <intent-filter> |
| 27 | <action android:name="android.intent.action.MAIN" /> |
| 28 | <category android:name="android.intent.category.LAUNCHER" /> |
| 29 | </intent-filter> |
| 30 | </activity> |
| 31 | <activity |
| 32 | android:name=".ImmersiveActivity" |
Vladimir Komsiyski | 35c8224 | 2023-12-20 14:50:50 +0100 | [diff] [blame] | 33 | android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout" |
Vladimir Komsiyski | 9996ce3 | 2023-12-06 11:03:14 +0100 | [diff] [blame] | 34 | android:theme="@style/Theme.AppCompat.Light.NoActionBar.FullScreen" /> |
| 35 | </application> |
Vladimir Komsiyski | d2c0597 | 2023-12-05 09:15:01 +0000 | [diff] [blame] | 36 | </manifest> |