You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
I'm very sorry, I shouldn't be asking here, but I really need to know how to fix this problem.
I use lua language to write an icon launcher program to launch the quest game, but it cannot jump to start the VR game. I have tried various methods to no avail. Can anyone tell me how to do it.
I don’t know what code needs to be written in the AndroidManifest.xml file
Below is my code:
--Create a function to start the quest game
function launchQuestGame(pkgName)
local intent = Intent()
.setClassName("com.oculus.vrshell", "com.oculus.vrshell.MainActivity")
.setAction(Intent.ACTION_VIEW)
.putExtra("uri", "vrshell://launch/" .. pkgName)
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
if intent.resolveActivity(packageManager) then
activity.startActivity(intent)
else
toast("Cannot start the application")
end
end
-- Called in another file directory, such as running the beat saber game
launchQuestGame(com.beatgames.beatsaber)
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm very sorry, I shouldn't be asking here, but I really need to know how to fix this problem.
I use lua language to write an icon launcher program to launch the quest game, but it cannot jump to start the VR game. I have tried various methods to no avail. Can anyone tell me how to do it.
I don’t know what code needs to be written in the AndroidManifest.xml file
Below is my code:
--Create a function to start the quest game
function launchQuestGame(pkgName)
local intent = Intent()
.setClassName("com.oculus.vrshell", "com.oculus.vrshell.MainActivity")
.setAction(Intent.ACTION_VIEW)
.putExtra("uri", "vrshell://launch/" .. pkgName)
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
if intent.resolveActivity(packageManager) then
activity.startActivity(intent)
else
toast("Cannot start the application")
end
end
-- Called in another file directory, such as running the beat saber game
launchQuestGame(com.beatgames.beatsaber)
The text was updated successfully, but these errors were encountered: