-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
22 lines (22 loc) · 1.37 KB
/
AndroidManifest.xml
File metadata and controls
22 lines (22 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.bostwickenator.javagbc" android:versionCode="2"
android:versionName="1.1.0">
<supports-screens android:anyDensity="false" android:smallScreens="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true"/>
<uses-sdk android:targetSdkVersion="1" android:minSdkVersion="1" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" android:debuggable="true">
<activity android:name=".KiddGBC" 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:name=".FileBrowser" android:label="@string/app_name" />
<activity android:name=".Settings" android:label="@string/app_name" android:launchMode="singleInstance" />
<activity android:name=".SaveStates" android:theme="@android:style/Theme.Dialog" />
<activity android:name=".States" android:label="@string/app_name" />
<activity android:name=".RomView" android:label="@string/app_name"
android:theme="@style/Theme.NoBackground" />
</application>
</manifest>