2012-06-16 20:03:08 +00:00
|
|
|
<?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" >
|
|
|
|
|
2012-10-14 03:24:34 +00:00
|
|
|
<uses-sdk android:minSdkVersion="15" />
|
2012-12-02 19:35:13 +00:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
2012-06-16 20:03:08 +00:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:icon="@drawable/ic_launcher"
|
2012-10-14 03:18:53 +00:00
|
|
|
android:label="@string/app_name">
|
2012-10-14 05:21:12 +00:00
|
|
|
<activity android:name="phoenix" android:label="@string/app_name" >
|
2012-06-16 20:03:08 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2012-06-19 07:08:07 +00:00
|
|
|
<activity android:label="@string/app_name" android:name="com.retroarch.fileio.FileChooser" />
|
2012-10-14 03:18:53 +00:00
|
|
|
<activity android:label="@string/app_name" android:name="rombrowser" />
|
2012-12-04 22:36:02 +00:00
|
|
|
<activity android:name="android.app.NativeActivity" android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale">
|
2012-10-14 05:21:12 +00:00
|
|
|
<meta-data android:name="android.app.lib_name" android:value="retroarch-activity" />
|
2012-11-03 20:02:45 +00:00
|
|
|
<meta-data android:name="android.app.func_name" android:value="ANativeActivity_onCreate" />
|
2012-10-14 03:18:53 +00:00
|
|
|
</activity>
|
2012-06-16 20:03:08 +00:00
|
|
|
</application>
|
2012-06-16 20:47:16 +00:00
|
|
|
</manifest>
|