mirror of
https://github.com/Pecusx/libretro-atari800.git
synced 2026-05-21 06:39:36 +02:00
28 lines
867 B
XML
28 lines
867 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="name.nick.jubanka.colleen"
|
|
android:installLocation="auto"
|
|
android:versionCode="300"
|
|
android:versionName="3.0">
|
|
<uses-sdk
|
|
android:minSdkVersion="4"
|
|
android:targetSdkVersion="20"/>
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
<application
|
|
android:label="@string/app_name"
|
|
android:icon="@drawable/icon">
|
|
<activity
|
|
android:name="MainActivity"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/MainTheme">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name=".FileSelector"/>
|
|
<activity android:name=".Preferences"/>
|
|
</application>
|
|
</manifest>
|