This repository was archived by the owner on Feb 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
157 lines (134 loc) · 6.35 KB
/
AndroidManifest.xml
File metadata and controls
157 lines (134 loc) · 6.35 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cs.softwarearchitecture.eventcal"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="16" />
<uses-permission android:name="android.permission.VIBRATE"/>
<permission
android:name="cs.softwarearchitecture.eventcal.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<permission
android:name="cs.softwarearchitecture.eventcal.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<!--
The following two permissions are not required to use
Google Maps Android API v2, but are recommended.
-->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.READ_CALENDAR" />
<uses-permission android:name="cs.softwarearchitecture.eventcal.permission.MAPS_RECEIVE" />
<uses-permission android:name="cs.softwarearchitecture.eventcal.permission.C2D_MESSAGE" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="cs.softwarearchitecture.eventcal.DefaultView"
android:configChanges="orientation"
android:label="@string/event_calendar"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<meta-data
android:name="android.app.default_searchable"
android:value=".Search" />
</activity>
<activity
android:name="cs.softwarearchitecture.eventcal.SettingsActivity"
android:configChanges="orientation"
android:label="@string/title_activity_settings"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="cs.softwarearchitecture.eventcal.Search"
android:label="@string/app_name"
android:launchMode="singleTop"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
<action android:name="android.intent.action.VIEW" />
</intent-filter>
<meta-data
android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>
<provider
android:name="cs.softwarearchitecture.eventcal.contentprovider.DBEventsContentProvider"
android:authorities="cs.softwarearchitecture.eventcal.contentprovider" >
</provider>
<activity
android:name="cs.softwarearchitecture.eventcal.modify.AddEvent"
android:label="@string/add_event"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="cs.softwarearchitecture.eventcal.modify.EditEvent"
android:label="@string/edit_event"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="cs.softwarearchitecture.eventcal.AgendaActivity"
android:label="@string/title_activity_agenda"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="cs.softwarearchitecture.eventcal.MonthActivity"
android:label="@string/title_activity_month"
android:screenOrientation="portrait" >
</activity>
<service android:name="cs.softwarearchitecture.eventcal.services.FacebookService" >
</service>
<service android:name="cs.softwarearchitecture.eventcal.services.GoogleService" >
</service>
<service
android:name="cs.softwarearchitecture.eventcal.services.EventbriteEventService"
android:enabled="true" >
</service>
<service
android:name="cs.softwarearchitecture.eventcal.services.UWEventService"
android:enabled="true" >
</service>
<receiver android:name="cs.softwarearchitecture.eventcal.EventNotificationReceiver" >
<intent-filter>
<data android:scheme="timer:" />
</intent-filter>
</receiver>
<activity
android:name="cs.softwarearchitecture.eventcal.MapActivity"
android:label="@string/title_activity_map"
android:theme="@android:style/Theme.NoTitleBar" >
</activity>
<service android:name="com.google.cloud.backend.android.GCMIntentService" />
<receiver
android:name="com.google.android.gcm.GCMBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="com.google.cloud.backend.android" />
</intent-filter>
</receiver>
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyBWFRo4YbHhIFxwRwWu5IZWY9qycq2W7Rc" />
</application>
</manifest>