-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
143 lines (114 loc) · 5.53 KB
/
AndroidManifest.xml
File metadata and controls
143 lines (114 loc) · 5.53 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
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="edu.HomeScreen"
android:versionCode="1"
android:versionName="1.0">
<!-- Build against OS 4.0.3 (API 15) because of Actionbar Sherlock, but support OS 2.2 (API 8)
for greater compatibility. Be mindful of API 8 compatibility when coding. -->
<uses-sdk android:minSdkVersion="8"
android:targetSdkVersion="15"/>
<!-- Specifies app permissions:
-Uses the Internet for Google Maps
-Uses vibration when action bar icons receive a long press -->
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.VIBRATE"/>
<application
android:icon="@drawable/ic_launcher_crest"
android:label="@string/app_name"
android:theme="@style/Theme.Styled">
<!-- Declare the Google Maps library -->
<uses-library android:name="com.google.android.maps"/>
<!-- Activities -->
<!-- Home Screen screen -->
<!-- Locked in portrait mode so Loras watermark in background fits different screen sizes. -->
<activity
android:name=".HomeScreen"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- About page screen -->
<activity
android:name=".Information"
android:label="@string/about_page_app_name"/>
<!-- Academic Calendar: List of semesters screen -->
<activity
android:name="edu.Calendar.MenuCalendar"
android:label="@string/academic_calendar_app_name"/>
<!-- Campus Directory: List of divisions screen -->
<activity
android:name="edu.Directory.campusDirectory"
android:label="@string/campus_directory_app_name"/>
<!-- Campus Directory: Contact information for a particular division screen -->
<activity
android:name="edu.Directory.Departments"
android:label="@string/campus_directory_app_name"/>
<!-- Directions: List of locations screen -->
<activity
android:name="edu.Directions.Directions"
android:label="@string/directions_app_name"/>
<!-- Directions: Directions detail screen for a particular state screen -->
<activity
android:name="edu.Directions.PrintStates"
android:label="@string/directions_app_name"/>
<!-- Location Detail screen -->
<activity
android:name="edu.MapsCommon.LocationInfoActivity"
android:label="@string/location_details_app_name"/>
<!-- Majors: List of majors screen -->
<activity
android:name="edu.Majors.LorasMajorsList"
android:label="@string/majors_app_name"/>
<!-- Majors: Details for a particular major screen -->
<activity
android:name="edu.Majors.LorasMajorsDetails"
android:label="@string/majors_app_name"/>
<!-- Map Explorer screen -->
<activity
android:name="edu.MapExplorer.MapsActivity"
android:label="@string/map_explorer_app_name"/>
<!-- Photo Gallery: Eat/Sleep/Study/Have Fun Category screen -->
<activity
android:name="edu.PhotoGallery.CoverFlowExample"
android:label="@string/photo_gallery_app_name"
android:screenOrientation="portrait"/>
<!-- Photo Gallery: Display photos for a particular category screen -->
<activity
android:name="edu.PhotoGallery.GalleryView"
android:label="@string/photo_gallery_app_name"
android:screenOrientation="portrait"/>
<!-- Photo Gallery: Slideshow screen -->
<activity
android:name="edu.PhotoGallery.SlideShow"
android:label="@string/photo_gallery_app_name"
android:screenOrientation="portrait"/>
<!-- Request Information screen -->
<activity
android:name="edu.RequestInfo.requestInformation"
android:label="@string/request_info_app_name"/>
<!-- Schedule a Visit screen -->
<activity
android:name="edu.ScheduleVisit.Visit"
android:label="@string/schedule_visit_app_name"/>
<!-- Student Checklist screen -->
<activity
android:name="edu.CheckList.SavedChecklist"
android:label="@string/checklist_app_name"
android:configChanges="orientation"/>
<!-- Student Organizations: Expandable list of organizations screen -->
<activity
android:name="edu.Organizations.ExpandableList1"
android:label="@string/organizations_app_name" />
<!-- Student Organizations: Detailed information for an organization screen -->
<activity
android:name="edu.Organizations.Organization"
android:label="@string/organizations_app_name"/>
<!-- Virtual Tour screen -->
<activity
android:name="edu.VirtualTour.TourActivity"
android:label="@string/tour_app_name"/>
</application>
</manifest>