mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-27 18:20:27 +00:00
bc36993f8b
from a tutorial for now - we'll slim it down and extend it later
27 lines
1022 B
XML
27 lines
1022 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.retroarch"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
|
|
<uses-sdk android:minSdkVersion="15" />
|
|
|
|
<application
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name" >
|
|
<activity
|
|
android:name=".main"
|
|
android:label="@string/app_name" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:label="@string/app_name" android:name="rombrowser" />
|
|
<activity android:label="@string/app_name" android:name="com.retroarch.fileio.FileChooser" />
|
|
</application>
|
|
<!-- Tell the system this app requires OpenGL ES 2.0. -->
|
|
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
|
|
</manifest>
|