forked from shagr4th/FrodoC64
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
26 lines (20 loc) · 1.43 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="paulscode.ouya.frodoc64"
android:installLocation="auto" android:versionCode="18" android:versionName="0.96.2">
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="17"/>
<application android:label="@string/app_name" android:icon="@drawable/icon">
<activity android:label="@string/app_name" android:name="org.ab.c64.FrodoC64" android:windowSoftInputMode="adjustResize" android:launchMode="singleTop" android:configChanges="keyboardHidden|orientation" android:screenOrientation="sensor">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="tv.ouya.intent.category.GAME" />
</intent-filter>
</activity>
<activity android:name="org.ab.nativelayer.ImportView" android:label="Choose a D64 or PRG disk"></activity>
<activity android:name="org.ab.c64.Settings"></activity>
<activity android:name="org.ab.c64.C64Help"></activity>
</application>
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true" android:resizeable="true"></supports-screens>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
</manifest>