forked from ushahidi/Ushahidi_Android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
154 lines (142 loc) · 6.47 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) 2010 Ushahidi Inc All rights reserved Contact: [email protected]
Website: http://www.ushahidi.com GNU Lesser General Public License Usage
This file may be used under the terms of the GNU Lesser General Public License
version 3 as published by the Free Software Foundation and appearing in the
file LICENSE.LGPL included in the packaging of this file. Please review the
following information to ensure the GNU Lesser General Public License version
3 requirements will be met: http://www.gnu.org/licenses/lgpl.html. If you
have questions regarding the use of this file, please contact Ushahidi developers
at [email protected]. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ushahidi.android.app" android:versionCode="6"
android:versionName="0.1">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.RECEIVE_SMS" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-feature android:name="android.hardware.camera" />
<!-- Enable this feature if you need autofocus <uses-feature android:name="android.hardware.camera.autofocus"
/> -->
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="9" />
<application android:icon="@drawable/ushahidi_icon"
android:label="@string/app_name" android:name="UshahidiApplication"
android:debuggable="true">
<service android:name="UshahidiService" />
<uses-library android:name="com.google.android.maps" />
<activity android:name=".UshahidiSplashScreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".Ushahidi" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<!-- Incidents List -->
<activity android:name=".ListIncidents" android:label="@string/view_incident">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"></category>
</intent-filter>
<intent-filter>
<action android:name="org.addhen.ushahidi.INCIDENTS" />
<category android:name="android.intent.category.DEFAULT"></category>
</intent-filter>
<intent-filter>
<action android:name="org.addhen.ushahidi.NEW" />
<category android:name="android.intent.category.DEFAULT"></category>
</intent-filter>
</activity>
<!-- Incidents Map -->
<activity android:name=".IncidentMap" android:label="@string/view_incident">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"></category>
</intent-filter>
</activity>
<!-- Checkins Map -->
<activity android:name=".checkin.CheckinMap" android:label="@string/view_checkins">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"></category>
</intent-filter>
</activity>
<!-- View Incidents -->
<activity android:name=".ViewIncidents" android:label="@string/view_incident">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"></category>
</intent-filter>
</activity>
<!-- reports tabs -->
<activity android:name=".IncidentsTab" android:label="@string/reports">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"></category>
</intent-filter>
</activity>
<!-- Add a new incidents -->
<activity android:configChanges="orientation|keyboardHidden"
android:name=".AddIncident" android:label="@string/add_incident">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"></category>
</intent-filter>
</activity>
<!-- Add location -->
<activity android:name=".LocationMap" android:label="@string/add_location">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"></category>
</intent-filter>
</activity>
<!-- Settings -->
<activity android:name=".Settings" android:configChanges="orientation|keyboardHidden"
android:label="@string/app_settings">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.ACTION_VIEW" />
</intent-filter>
</activity>
<!-- Image capture -->
<activity android:name=".ImageCapture" android:label="@string/str_post_photos">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"></category>
</intent-filter>
</activity>
<!-- View Checkins -->
<activity android:name=".checkin.ViewCheckins" android:label="@string/view_checkins">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"></category>
</intent-filter>
</activity>
<!-- About -->
<activity android:name=".About" android:label="@string/ushahidi_about">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"></category>
</intent-filter>
</activity>
<activity android:name=".checkin.CheckinActivity"
android:configChanges="orientation|keyboardHidden" android:label="Checkin" />
<!-- Receiver waits for connectivity change so offline messages can be sent -->
<receiver android:name=".OfflineIncidentSendReceiver" android:enabled="true"
android:priority="0">
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
</intent-filter>
</receiver>
</application>
</manifest>