2012-06-16 22:03:08 +02:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-12-06 01:47:52 -05:00
|
|
|
package="org.retroarch"
|
2012-06-16 22:03:08 +02:00
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0" >
|
|
|
|
|
2012-12-06 01:47:52 -05:00
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="9"
|
|
|
|
android:targetSdkVersion="16" />
|
2012-12-02 14:35:13 -05:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
2012-12-06 01:47:52 -05:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
|
|
2012-06-16 22:03:08 +02:00
|
|
|
<application
|
|
|
|
android:icon="@drawable/ic_launcher"
|
2012-12-06 01:47:52 -05:00
|
|
|
android:label="@string/app_name" >
|
|
|
|
<activity android:name=".browser.ModuleActivity">
|
2012-06-16 22:03:08 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2012-12-06 01:47:52 -05:00
|
|
|
|
2012-06-16 22:03:08 +02:00
|
|
|
</activity>
|
2012-12-06 01:47:52 -05:00
|
|
|
|
|
|
|
<activity android:name=".browser.DirectoryActivity"></activity>
|
2012-12-04 17:36:02 -05: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 07:21:12 +02:00
|
|
|
<meta-data android:name="android.app.lib_name" android:value="retroarch-activity" />
|
2012-11-03 21:02:45 +01:00
|
|
|
<meta-data android:name="android.app.func_name" android:value="ANativeActivity_onCreate" />
|
2012-10-14 05:18:53 +02:00
|
|
|
</activity>
|
2012-12-06 01:47:52 -05:00
|
|
|
|
2012-06-16 22:03:08 +02:00
|
|
|
</application>
|
2012-12-06 01:47:52 -05:00
|
|
|
|
|
|
|
</manifest>
|