Path: blob/master/android/app/src/main/AndroidManifest.xml
1152 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"29android:appCategory="game">3031<activity android:name="org.rems.rsdkv5.Launcher"32android:exported="true"33android:label="@string/app_name"34android:icon="@mipmap/ic_launcher"35android:theme="@style/Theme.AppCompat.DayNight.NoActionBar">3637<intent-filter>38<action android:name="android.intent.action.MAIN"/>39<category android:name="android.intent.category.LAUNCHER"/>40</intent-filter>4142</activity>4344<activity android:name=".RSDK"45android:exported="true"46android:icon="@mipmap/ic_launcher"47android:alwaysRetainTaskState="true"48android:launchMode="singleInstance"49android:screenOrientation="sensorLandscape"50android:configChanges="orientation|keyboardHidden|screenSize"5152android:theme="@style/AppTheme">5354<intent-filter>55<action android:name="android.intent.action.RUN"/>56<category android:name="android.intent.category.DEFAULT"/>57</intent-filter>5859<meta-data android:name="android.app.lib_name" android:value="RetroEngine"/>60</activity>6162</application>6364</manifest>656667