Path: blob/master/android/app/src/main/AndroidManifest.xml
774 views
<?xml version="1.0" encoding="utf-8"?>12<manifest xmlns:android="http://schemas.android.com/apk/res/android"3android:versionCode="100" android:versionName="1.0.0" android:installLocation="auto">45<uses-feature android:glEsVersion="0x00020000"/>67<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>89<uses-feature android:name="android.hardware.bluetooth" android:required="false"/>10<uses-feature android:name="android.hardware.gamepad" android:required="false"/>11<uses-feature android:name="android.hardware.usb.host" android:required="false"/>1213<uses-feature android:name="android.hardware.type.pc" android:required="false"/>1415<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"16android:maxSdkVersion="30" />17<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />18<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>1920<uses-permission21android:name="android.permission.BLUETOOTH"/>22<!-- <uses-permission android:name="android.permission.VIBRATE"/> -->2324<application25android:label="@string/app_name"26android:icon="@mipmap/ic_launcher"27android:allowBackup="true"28android:hardwareAccelerated="true">2930<activity android:name="org.rems.rsdkv5.Launcher"31android:exported="true"32android:label="@string/app_name"33android:icon="@mipmap/ic_launcher"34android:theme="@style/Theme.AppCompat.DayNight.NoActionBar">3536<intent-filter>37<action android:name="android.intent.action.MAIN"/>38<category android:name="android.intent.category.LAUNCHER"/>39</intent-filter>4041</activity>4243<activity android:name=".RSDK"44android:exported="true"45android:icon="@mipmap/ic_launcher"46android:alwaysRetainTaskState="true"47android:launchMode="singleInstance"48android:screenOrientation="sensorLandscape"49android:configChanges="orientation|keyboardHidden|screenSize"5051android:theme="@style/AppTheme">5253<intent-filter>54<action android:name="android.intent.action.RUN"/>55<category android:name="android.intent.category.DEFAULT"/>56</intent-filter>5758<meta-data android:name="android.app.lib_name" android:value="RetroEngine"/>59</activity>6061</application>6263</manifest>646566