diff options
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 34 |
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" > |