09-28-2022 12:38 AM
Hi, I have tried opening app from my website using android intent it is not launching the app. Does the oculus browser restricting to access .xml file? if it is, then what would be the better way to open app from a link?
This method is working in android phone but not in oculus. I am stuck here for the past 15 days any suggestion would be really helpful.
Here is my manifest look like:
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.INFO" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="unitydl" android:host="mylink" />
</intent-filter>
and this is what HTML code like:
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
</head>
<body >
<h1>My Deep Link Test page</h1>
<p><a href="unitydl://mylink">Launch</a></p>
<p><a href="unitydl://mylink?parameter">Launch with Parameter</a></p>
</body>
</html>