App integration
Android
URI Schema
URI | Description |
---|
lovelolibreservice://stations | Opens the map view |
lovelolibreservice://stations/{station-id} | Opens the map view with the station matching the station-id selected |
lovelolibreservice://trips | Opens the trip history view |
lovelolibreservice://profile | Opens the profile view |
Testing deep links from the command line on Android:
adb shell am start -W -a android.intent.action.VIEW -d lovelolibreservice://trips
Testing deep links from your app code as an implicit intent on Android:
Intent tripsIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("lovelolibreservice://trips"));
this.startActivity(tripsIntent);
iOS
URI Schema
URI | Description |
---|
lovelolibreservice://stations | Opens the map view |
lovelolibreservice://stations/{station-id} | Opens the map view with the station matching the station-id selected |
lovelolibreservice://trips | Opens the trip history view |
lovelolibreservice://profile | Opens the profile view |