Reputation: 1
i wanna up load my android app's apk on Oculus appLap, then this issue happened, i did research and they suggested me to add OpenXR mobile SDK to my project, but i didnt get the detail documentation to add it, pls help me.
The sdk i dowloaded from Oculus is the folder, no clue how to add it to my Android project app.
Upvotes: -2
Views: 286
Reputation: 1
For Unity, go to Project Settings > Oculus [tab on left] > Fix All [button]
That also fixes black screen
Upvotes: 0
Reputation: 1
I just solved this problem!! First you have to download Oculus SDK from unity assets store https://assetstore.unity.com/packages/tools/integration/oculus-integration-82022 then implement it in your unity project. Second export unity project, you will get 3 following .aar files.
1.InteractionSdk.aar
2.OVRPlugin.aar
3.SDKTelemetry.aar
implementation(name: 'InteractionSdk', ext:'aar')
implementation(name: 'OVRPlugin', ext:'aar')
implementation(name: 'SDKTelemetry', ext:'aar')
Done~
Upvotes: 0