Hi!
I'm searching for the URLscheme of the Totara mobile app. I would like to call the app via an manifest.json to automatically open the app from a link in IOS and Android. See below for the manifest.json.
{ "name": { "en-US": "Leerplatform Lerenbij Boni V1.1", "nl-NL": "Leerplatform Lerenbij Boni V1.1" }, "icon": "https://bonisupermarkt.nl/images/og-default.jpg", "iconThumbnailUrl": "https://bonisupermarkt.nl/images/og-default.jpg", "permissions": [], "entries": [ { "position": "main", "devices": "ios", "url": "yourapp://example.yourapp.com/", "fallbackUrl": "https://apps.apple.com/nl/app/totara/id1460753566", "label": { "en-US": "Leerplatform IOS, "nl-NL": "Leerplatform IOS" }, "icon": "\uf1ea", "responsive": false }, { "position": "main", "devices": "android", "url": "yourapp://example.yourapp.com/", "fallbackUrl": "https://play.google.com/store/apps/details?id=com.totaramobileapp&gl=NL", "label": { "en-US": "Leerplatform Android", "nl-NL": "Leerplatform Android" }, "icon": "\uf1ea", "responsive": false } ] }
As shown above i need the yourapp://example.yourapp.com/ code for both IOS and Android so i can let users open the app with a link. If they have installed the app they should go straight to the homepage of the app, otherwise they would go to the appstore in both IOS or Android so they can install the app.