forked from odk-x/scan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
107 lines (95 loc) · 3.61 KB
/
AndroidManifest.xml
File metadata and controls
107 lines (95 loc) · 3.61 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
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.opendatakit.scan.android"
android:versionCode="125"
android:versionName="2.3" >
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="7" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" >
</uses-feature>
<uses-feature android:name="android.hardware.camera.flash" >
</uses-feature>
<uses-feature android:name="android.hardware.touchscreen" >
</uses-feature>
<uses-permission android:name="android.permission.CAMERA" >
</uses-permission>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" >
</uses-permission>
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name="org.opendatakit.scan.android.Scan"
android:icon="@drawable/icon"
android:label="ODK Scan"
android:theme="@android:style/Theme.Light" >
<activity
android:name="MainMenu"
android:label="ODK Scan"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="JSON2XForm"
android:screenOrientation="portrait" >
</activity>
<!-- Added to be able to translate the Scan code to JSON -->
<activity
android:name="JSON2SurveyJSON"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Translucent.NoTitleBar">
</activity>
<activity
android:name="PhotographForm"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="ViewScannedForms"
android:label="@string/view_bubble_forms_activity" >
</activity>
<activity
android:name="Instructions"
android:label="@string/bubble_instructions_activity" >
</activity>
<activity
android:name="DisplayProcessedForm"
android:label="@string/display_processed_form_activity"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.VIEW" />
</intent-filter>
</activity>
<activity
android:name="AfterPhotoTaken"
android:configChanges="orientation|keyboardHidden|keyboard"
android:label="@string/after_photo_taken_activity"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="org.opendatakit.scan.android.AlignImage"
android:configChanges="orientation|keyboardHidden|keyboard"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="org.opendatakit.scan.android.ALIGN" />
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity
android:name="DisplayStatus"
android:label="status"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="AppSettings"
android:label="Settings" >
</activity>
<service
android:name=".ProcessInBG"
android:label="ODK Scan Background" >
</service>
</application>
</manifest>