-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathAndroidManifest.xml
165 lines (149 loc) · 6.92 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
155
156
157
158
159
160
161
162
163
164
165
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2009 University of Washington Licensed under the Apache
License, Version 2.0 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
OR CONDITIONS OF ANY KIND, either express or implied. See the License for
the specific language governing permissions and limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.koboc.collect.android"
android:versionCode="1024"
android:versionName="1.2.2" >
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-sdk android:minSdkVersion="7" >
</uses-sdk>
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true" />
<application
android:name="org.koboc.collect.android.application.Collect"
android:icon="@drawable/notes"
android:label="@string/app_name"
android:theme="@style/Collect" android:debuggable="true">
<provider
android:name=".provider.FormsProvider"
android:authorities="org.koboc.collect.android.provider.koboc.forms" />
<provider
android:name=".provider.InstanceProvider"
android:authorities="org.koboc.collect.android.provider.koboc.instances" />
<activity
android:name=".activities.MainMenuActivity"
android:configChanges="orientation"
android:label="@string/app_name" >
</activity>
<activity
android:name=".activities.FormEntryActivity"
android:configChanges="orientation"
android:label="@string/app_name"
android:windowSoftInputMode="adjustResize" >
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.EDIT" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.item/vnd.koboc.form" />
<data android:mimeType="vnd.android.cursor.item/vnd.koboc.instance" />
</intent-filter>
</activity>
<activity
android:name=".activities.AccountList"
android:label="@string/app_name" />
<activity
android:name=".activities.AccountInfo"
android:label="@string/app_name" />
<activity
android:name=".activities.DrawActivity"
android:label="@string/app_name" />
<activity
android:name=".activities.InstanceChooserList"
android:label="@string/app_name" />
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.EDIT" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.dir/vnd.koboc.instance" />
</intent-filter>
<activity
android:name="org.koboc.collect.android.activities.InstanceChooserTabs"
android:label="@string/app_name" />
<activity
android:name=".activities.FormChooserList"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.EDIT" />
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.dir/vnd.koboc.form" />
</intent-filter>
</activity>
<activity
android:name=".activities.FormManagerList"
android:label="@string/app_name" />
<activity
android:name=".activities.FormDownloadList"
android:label="@string/app_name" />
<activity
android:name=".activities.DataManagerList"
android:label="@string/app_name" />
<activity
android:name=".activities.FileManagerTabs"
android:label="@string/app_name" />
<activity
android:name=".activities.InstanceUploaderList"
android:label="@string/app_name" />
<activity
android:name=".activities.InstanceUploaderActivity"
android:label="@string/app_name" />
<activity
android:name=".preferences.PreferencesActivity"
android:label="@string/app_name" />
<activity
android:name=".preferences.AdminPreferencesActivity"
android:label="@string/app_name" />
<activity
android:name=".activities.FormHierarchyActivity"
android:label="@string/app_name" />
<activity
android:name=".activities.GeoPointActivity"
android:label="@string/app_name" />
<activity
android:name=".activities.GeoPointMapActivity"
android:label="@string/app_name" />
<activity
android:name=".activities.SplashScreenActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Dialog" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Enable Shortcuts for Command Actions -->
<activity
android:name=".activities.AndroidShortcuts"
android:label="ODK Form"
android:theme="@android:style/Theme.Translucent.NoTitleBar" >
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<uses-library
android:name="com.google.android.maps"
android:required="false" />
</application>
</manifest>