Atlas - AndroidManifest.xml.cmake
Home / ext / SDL / test / android / cmake Lines: 1 | Size: 2907 bytes [Download] [Show on GitHub] [Search similar files] [Raw] [Raw (proxy)][FILE BEGIN]1<?xml version="1.0" encoding="utf-8"?> 2<manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.android.com/tools" 4 package="@ANDROID_MANIFEST_PACKAGE@"> 5 6 <!-- OpenGL ES 2.0 --> 7 <uses-feature android:glEsVersion="0x00020000" /> 8 9 <!-- Touchscreen support --> 10 <uses-feature 11 android:name="android.hardware.touchscreen" 12 android:required="false" /> 13 14 <!-- Game controller support --> 15 <uses-feature 16 android:name="android.hardware.bluetooth" 17 android:required="false" /> 18 <uses-feature 19 android:name="android.hardware.gamepad" 20 android:required="false" /> 21 <uses-feature 22 android:name="android.hardware.usb.host" 23 android:required="false" /> 24 25 <!-- External mouse input events --> 26 <uses-feature 27 android:name="android.hardware.type.pc" 28 android:required="false" /> 29 30 <!-- Allow access to the vibrator --> 31 <uses-permission android:name="android.permission.VIBRATE" /> 32 33 <!-- Allow access to the microphone --> 34 <uses-permission android:name="android.permission.RECORD_AUDIO" /> 35 36 <!-- Allow access to the camera --> 37 <uses-permission android:name="android.permission.CAMERA" /> 38 <uses-feature android:name="android.hardware.camera" /> 39 40 <application 41 android:allowBackup="true" 42 android:icon="@mipmap/sdl-test" 43 android:roundIcon="@mipmap/sdl-test_round" 44 android:label="@string/label" 45 android:supportsRtl="true" 46 android:theme="@style/AppTheme" 47 android:enableOnBackInvokedCallback="false" 48 android:hardwareAccelerated="true"> 49 <activity 50 android:name="@[email protected]" 51 android:exported="true" 52 android:label="@string/label" 53 android:alwaysRetainTaskState="true" 54 android:launchMode="singleInstance" 55 android:configChanges="layoutDirection|locale|orientation|uiMode|screenLayout|screenSize|smallestScreenSize|keyboard|keyboardHidden|navigation" 56 android:preferMinimalPostProcessing="true" 57 android:screenOrientation="fullSensor"> 58 <intent-filter> 59 <action android:name="android.intent.action.MAIN" /> 60 <category android:name="android.intent.category.LAUNCHER" /> 61 </intent-filter> 62 <intent-filter> 63 <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" /> 64 </intent-filter> 65 <meta-data 66 android:name="android.app.shortcuts" 67 android:resource="@xml/shortcuts" /> 68 </activity> 69 <activity 70 android:name="@[email protected]" 71 android:exported="false" 72 android:label="@string/label"> 73 </activity> 74 </application> 75</manifest> 76[FILE END](C) 2025 0x4248 (C) 2025 4248 Media and 4248 Systems, All part of 0x4248 See LICENCE files for more information. Not all files are by 0x4248 always check Licencing.