-
Notifications
You must be signed in to change notification settings - Fork 1
/
AndroidManifest.xml
97 lines (80 loc) · 4.16 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="test.BusTUC"
android:versionCode="7"
android:versionName="1.1.1" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="8" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar" >
<uses-library android:name="com.google.android.maps" />
<activity
android:configChanges="orientation|keyboardHidden"
android:label="@string/app_name"
android:name="org.ubicompforall.BusTUC.Main.Homescreen" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="org.ubicompforall.BusTUC.Main.BusTUCApp" />
<activity
android:configChanges="keyboardHidden|orientation"
android:name="org.ubicompforall.BusTUC.Main.RealTimeList" />
<activity android:name="org.ubicompforall.BusTUC.Main.RealTimeListFromMenu" />
<activity android:name="org.ubicompforall.BusTUC.Favourites.Favourite_Act" />
<activity android:name="org.ubicompforall.BusTUC.Main.Answer" />
<activity android:name="org.ubicompforall.BusTUC.Main.History" />
<activity android:name="org.ubicompforall.BusTUC.Main.About" />
<activity android:name="org.ubicompforall.BusTUC.Main.Settings" />
<activity android:name="org.ubicompforall.BusTUC.Main.OtherBusstop" />
<activity android:name="org.ubicompforall.BusTUC.Speech.SpeechAnswer" >
</activity>
<receiver android:name="org.ubicompforall.BusTUC.Main.SMSReceiver" >
<intent-filter >
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>
</receiver>
<!-- The following three lines are required to used iSpeech's Android SDK. -->
<activity
android:name="org.ispeech.iSpeechFramework"
android:theme="@android:style/Theme.Translucent" />
<meta-data
android:name="ispeech_api_key"
android:value="3a53fd86f0f4453ba0fee3f5b77dea55" />
<meta-data
android:name="debug"
android:value="false" />
<receiver android:name="org.ubicompforall.BusTUC.Main.Widget" >
<intent-filter >
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="org.ubicompforall.BusTUC.Main.Widget.ACTION_WIDGET_RECEIVER" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget" />
</receiver>
<activity
android:excludeFromRecents="true"
android:name="org.ubicompforall.BusTUC.Main.WidgetClick"
android:noHistory="true"
android:theme="@android:style/Theme.Dialog" >
<intent-filter >
<action android:name="org.ubicompforall.BusTUC.Main.Widget.ACTION_WIDGET_CONFIGURE" />
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="org.ubicompforall.BusTUC.Main.Widget.ACTION_WIDGET_RECEIVER" />
</intent-filter>
<!-- <service android:enabled="true" android:name="org.ubicompforall.BusTUC.Main.MyService" /> -->
</activity>
<!-- <service android:enabled="true" android:name="org.ubicompforall.BusTUC.Main.MyService" /> -->
</application>
</manifest>