aboutsummaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorChristopher Baines <cbaines8@gmail.com>2012-02-28 14:01:42 +0000
committerChristopher Baines <cbaines8@gmail.com>2012-02-28 14:01:42 +0000
commitb5d0db004eaf72e9eeff0dfd7f612591d670b139 (patch)
treee647c042998c3f51448ddd9c0b057dc95ef800f9 /AndroidManifest.xml
parenta6dcb82b21325934ae3f4df9cfc5aad04d414653 (diff)
downloadsouthamptonuniversitymap-b5d0db004eaf72e9eeff0dfd7f612591d670b139.tar
southamptonuniversitymap-b5d0db004eaf72e9eeff0dfd7f612591d670b139.tar.gz
Added a BusRoute activity, and moved more stuff over to the new uri system.
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 0445178..1c046f6 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -31,6 +31,16 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
+ <intent-filter android:label="@string/app_name" >
+ <action android:name="android.intent.action.VIEW" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.BROWSABLE" />
+
+ <data
+ android:host="opendatamap.ecs.soton.ac.uk"
+ android:scheme="http" />
+ </intent-filter>
</activity>
<activity android:name="FindActivity" >
</activity>
@@ -108,6 +118,30 @@
android:scheme="http" />
</intent-filter>
</activity>
+ <activity android:name="BusRouteActivity" >
+ <intent-filter android:label="@string/app_name" >
+ <action android:name="android.intent.action.VIEW" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.BROWSABLE" />
+
+ <data
+ android:host="id.southampton.ac.uk"
+ android:pathPrefix="/bus-route/"
+ android:scheme="http" />
+ </intent-filter>
+ <intent-filter android:label="@string/app_name" >
+ <action android:name="android.intent.action.VIEW" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.BROWSABLE" />
+
+ <data
+ android:host="data.southampton.ac.uk"
+ android:pathPrefix="/bus-route/"
+ android:scheme="http" />
+ </intent-filter>
+ </activity>
<activity
android:name=".PreferencesActivity"
android:label="@string/preferences" >