Android Question How to execute/call/run a deeplink ?

lkching7

Member
Licensed User
Longtime User
I found some post regarding how to make our app support deeplink.
But cannot found how to execute/call/run another app deeplink ?

For Example, My Supplier send me an app where support deeplink : superappandroid://lobbyevoandroid?account=username&password=password
in My B4A App, How to I execute/call/Run the deeplink ?

Thank You Very Much.
 

lkching7

Member
Licensed User
Longtime User
B4X:
Try
  Dim in As Intent
  in.Initialize(in.ACTION_VIEW, "superappandroid://lobbyevoandroid?account=username&password=password")
  StartActivity(in)
Catch
Log(LastException)
Log("App not installed")
End Try

Thank Erel very much!!
 
Upvote 0
Top