-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
52 lines (42 loc) · 2.42 KB
/
AndroidManifest.xml
File metadata and controls
52 lines (42 loc) · 2.42 KB
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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="edu.purdue.FieldNotebook"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="11" />
<!-- Setup a FIELD permission with arbitrates access to the field content provider -->
<permission
android:name="edu.purdue.libwaterapps.permission.NOTES"
android:label="@string/field_perm_label"
android:description="@string/field_perm_desc"
android:protectionLevel="normal" />
<permission
android:name="edu.purdue.libwaterapps.permission.OBJECTS"
android:label="@string/field_perm_label"
android:description="@string/field_perm_desc"
android:protectionLevel="normal" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="edu.purdue.libwaterapps.permission.NOTES" />
<uses-permission android:name="edu.purdue.libwaterapps.permission.ROCKS" />
<uses-permission android:name="edu.purdue.libwaterapps.permission.OBJECTS" />
<application android:label="@string/app_name"
android:icon="@drawable/ic_launcher">
<uses-library android:name="com.google.android.maps" />
<provider android:authorities="edu.purdue.libwaterapps.notesProvider"
android:name="edu.purdue.libwaterapps.provider.NotesProvider" android:exported="true"
android:permission="edu.purdue.libwaterapps.permission.NOTES" android:enabled="true" />
<provider android:authorities="edu.purdue.libwaterapps.objectsProvider"
android:name="edu.purdue.libwaterapps.provider.ObjectsProvider" android:exported="true"
android:permission="edu.purdue.libwaterapps.permission.OBJECTS" android:enabled="true" />
<activity android:name="FieldActivity"
android:label="@string/app_name"
android:windowSoftInputMode="adjustResize|stateHidden"
android:screenOrientation="landscape">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>