cancel
Showing results for 
Search instead for 
Did you mean: 

Launch MDK native app in Fiori web app

robbewuyts
Explorer
0 Kudos
406

Hi,

I created an MDK app to scan NFC tags, this app works fine and is installed on my iPhone. I also created a Fiori app, where I have a button "Scan NFC" that should launch the native MDK app.

I tried many things, using deeplink, like:

  • window.open("nfcreader app://")
  • window.open("nfcreader%20app://")
  • window.open("com.eliagroup.sap.pm.nfcreader.dev://")
  • etc...

but no luck so far

Anyone who can tell me how I can do this?

regards,

Robbe

Accepted Solutions (1)

Accepted Solutions (1)

Jitendra_Kansal
Product and Topic Expert
Product and Topic Expert

robbewuyts

You need to provide the URL scheme of your MDK client to get it launched from your Fiori app.

If you have branded your client using MDK SDK or Cloud build service, you must have provided UrlScheme in MDKProject.json, so you need to provide the same UrlScheme e.g.
window.open("<UrlScheme>://")

For public store client, it would like: window.open("sapmobilesvcs://")

Answers (1)

Answers (1)

robbewuyts
Explorer
0 Kudos

Thanks Jitendra! It works now.