-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroidManifest.xml
61 lines (61 loc) · 2.27 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ariel.android.airpocket"
android:versionCode="2"
android:versionName="1.0">
<application
android:label="@string/app_name"
android:icon="@drawable/icon"
android:theme="@android:style/Theme.NoTitleBar"
>
<activity android:name="AirPocket"
android:screenOrientation="portrait"
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=".EventIndexMonth"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
/>
<activity android:name=".EventIndexDay"
android:screenOrientation="portrait"
android:label="@string/eventindex_day_title">
</activity>
<activity android:name=".EventListView"
android:screenOrientation="portrait"
android:label="@string/eventindex_listview_title">
</activity>
<activity android:name=".EditEvent"
android:screenOrientation="portrait"
android:label="@string/editevent_title">
</activity>
<activity android:name=".EventViewer"
android:screenOrientation="portrait"
android:label="@string/eventviewer_title">
</activity>
<activity android:name="EditLabel"
android:screenOrientation="portrait"
android:label="@string/app_name"
android:theme="@android:style/Theme.Dialog"/>
<activity android:name="ItemSelect"
android:screenOrientation="portrait"
android:label="@string/app_name"
android:theme="@android:style/Theme.Dialog"/>
<activity android:name="ProgressiveProcessing"
android:screenOrientation="portrait"
android:label="@string/app_name"
android:theme="@android:style/Theme.Dialog"/>
<activity android:name="InputTwoColumns"
android:screenOrientation="portrait"
android:label="@string/app_name"
android:theme="@android:style/Theme.Dialog"/>
<activity android:name=".ShowConfig"
android:screenOrientation="portrait"
android:label="@string/eventviewer_title"/>
</application>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_CONTACTS"/>
</manifest>