-
Notifications
You must be signed in to change notification settings - Fork 7
/
AndroidManifest.xml
114 lines (105 loc) · 5.2 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="sk.halmi.fbeditplus" android:versionName="1.5.0" android:versionCode="13"
android:installLocation="preferExternal">
<uses-sdk android:minSdkVersion="3" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true"
/>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".EditorActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:configChanges="keyboard|orientation|keyboardHidden"
android:alwaysRetainTaskState="true"
android:launchMode="singleInstance">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="sk.halmi.fbeditplus.EDIT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="sk.halmi.fbeditplus.RUNLEVEL" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".AboutActivity"
android:label="@string/app_about"
android:screenOrientation="portrait"
android:alwaysRetainTaskState="true"
android:launchMode="singleInstance">
<intent-filter>
<action android:name="sk.halmi.fbeditplus.ABOUT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".TutorialActivity"
android:label="@string/t_nadpis"
android:screenOrientation="portrait"
android:alwaysRetainTaskState="true"
android:launchMode="singleInstance">
<intent-filter>
<action android:name="sk.halmi.fbeditplus.TUTORIAL" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="sk.halmi.fbeditplus.overview.OverviewActivity"
android:label="@string/app_overview"
android:screenOrientation="portrait"
android:alwaysRetainTaskState="true"
android:launchMode="singleInstance">
<intent-filter>
<action android:name="sk.halmi.fbeditplus.OVERVIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".UploadLevelPackActivity"
android:label="@string/uploadtitle"
android:screenOrientation="portrait"
android:alwaysRetainTaskState="true"
android:launchMode="singleInstance">
<intent-filter>
<action android:name="sk.halmi.fbeditplus.UPLOAD" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="sk.halmi.fbeditplus.overview.ChooseUploadLevelActivity"
android:label="@string/app_upload_overview"
android:screenOrientation="portrait"
android:alwaysRetainTaskState="true"
android:launchMode="singleInstance">
<intent-filter>
<action android:name="sk.halmi.fbeditplus.CHOOSEUPLOADLEVEL" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".DownloadLevelPackActivity"
android:label="@string/app_download"
android:screenOrientation="portrait"
android:alwaysRetainTaskState="true"
android:launchMode="singleInstance">
<intent-filter>
<action android:name="sk.halmi.fbeditplus.DOWNLOAD" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="sk.halmi.fbeditplus.overview.ChooseDownloadLevelActivity"
android:label="@string/app_download_overview"
android:screenOrientation="portrait"
android:alwaysRetainTaskState="true"
android:launchMode="singleInstance">
<intent-filter>
<action android:name="sk.halmi.fbeditplus.DOWNLOAD_RESULTS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>