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 ?
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
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