-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
125 lines (95 loc) · 5.26 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="uk.ac.cam.cl.dtg.android.time.BusTimetables"
android:versionCode="5" android:versionName="1.1.1">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<meta-data android:name="android.app.default_searchable"
android:value=".AppMain" />
<activity android:name=".AppMain"
android:label="@string/app_name" android:launchMode="singleTop" android:configChanges="keyboard|keyboardHidden|orientation">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<!-- The activity receives search intents -->
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>
<activity android:name=".MapViewActivity"
android:label="@string/app_name" android:launchMode="singleTop">
</activity>
<activity android:name=".NearbyStopActivity"
android:label="@string/app_name" android:launchMode="singleTop">
</activity>
<activity android:name=".LookupStopActivityGroup"
android:label="@string/app_name">
</activity>
<activity android:name=".LookupStopActivity"
android:label="@string/app_name" android:launchMode="singleInstance">
<intent-filter>
<action android:name="uk.ac.cam.cl.dtg.android.time.BusTimetables.LookupAddrIntent" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".BusStopActivity"
android:label="@string/bus_stop_act" android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="content"
android:host = "uk.ac.cam.cl.dtg.android.time.BusStopApp" />
<!-- <data android:scheme = "businfo" android:host="stop" /> -->
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".LookupNameActivity"
android:label="@string/bus_name_lookup">
</activity>
<activity android:name=".LookupAddressActivity"
android:label="@string/bus_address_lookup">
</activity>
<activity android:name=".StarredStopsActivity"
android:label="@string/starred_stops">
</activity>
<activity android:name=".AboutActivity"
android:label="@string/about">
</activity>
<activity android:name=".SettingsActivity"></activity>
<activity
android:name=".StarredBusStopLiveFolder"
android:label="Starred bus stops">
<intent-filter>
<action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<provider android:name="BusStopContentProvider" android:authorities="uk.ac.cam.cl.dtg.android.time.BusStopApp" />
<uses-library android:name="com.google.android.maps" />
<receiver android:name=".AlarmReceiver" >
<intent-filter>
<action android:name="uk.ac.cam.cl.dtg.android.time.BusTimetables.BUS_ARRIVAL_REMINDER" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="reminder"
android:host = "uk.ac.cam.cl.dtg.android.time.BusStopApp" />
</intent-filter>
<intent-filter>
<action android:name="uk.ac.cam.cl.dtg.android.time.BusTimetables.BUS_ARRIVAL_REMINDER_CLICKED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="uk.ac.cam.cl.dtg.android.time.BusTimetables.BUS_ARRIVAL_FOLLOWUP" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="reminder"
android:host = "uk.ac.cam.cl.dtg.android.time.BusStopApp" />
</intent-filter>
</receiver>
</application>
<uses-sdk android:minSdkVersion="4"/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.VIBRATE" ></uses-permission>
</manifest>