I would like to know how to launch a specific browser (not the default) targeting a specific link (URL). I have seen the two examples below, but both will launch the default browser. I am looking for code snippets that would let me launch both Chrome and Firefox in the way I have described.
Erel's code sample below seems to offer a solution, but I don't know how to complete the required entries. Can anyone help me with this? Any help greatly appreciated.
Best regards
B4X:
Private i As Intent
i.Initialize(i.ACTION_VIEW,"https://www.example.com")
StartActivity(i)
B4X:
Dim p As PhoneIntents
StartActivity(p.OpenBrowser("https://www.example.com")
B4X:
Dim in As Intent = p.OpenBrowser(...)
in.SetComponent(...)
StartActivity(in)