Hi
Since you cannot drag URL links to the taskbar or customize the homepage on the Meta Quest 3, I want to create a small app that simply opens a URL in the Meta Quest Browser when a button is pressed or when the app starts.
I have implemented the following blocks:
When Button1.Click
ActivityStarter.Action = "android.intent.action.VIEW"
ActivityStarter.DataUri = "https://www.examplesite.com"
ActivityStarter.PackageName = "com.oculus.browser"
ActivityStarter.StartActivity
Unfortunately, the program does not open the link in the browser on the VR headset.
Does anyone have experience with this?