App integration

Android

URI Schema
URIDescription
rowermevo://stationsOpens the map view
rowermevo://stations/{station-id}Opens the map view with the station matching the station-id selected
rowermevo://tripsOpens the trip history view
rowermevo://profileOpens the profile view

Testing deep links from the command line on Android:

adb shell am start -W -a android.intent.action.VIEW -d rowermevo://trips

Testing deep links from your app code as an implicit intent on Android:

Intent tripsIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("rowermevo://trips"));
this.startActivity(tripsIntent);

iOS

URI Schema
URIDescription
rowermevo://stationsOpens the map view
rowermevo://stations/{station-id}Opens the map view with the station matching the station-id selected
rowermevo://tripsOpens the trip history view
rowermevo://profileOpens the profile view