- Home /
Oculus Hand tracking does not work on sideloaded APK
I build an oculus VR App which uses OVR hand tracking. All works well when testing it via oculus Link. But when I build the APK and sideload it via side quest, starting the app with hand tracking, I get forced to switch to controllers with the following Message:
Switch to controllers to use this app please pick up the controllers and select continue tip: Passthrough is a feature that lets you see your physical environment with your headset on. you can turn on Passthrough now to find your controllers. turn on passthrough continue cancel
Any idea how to solve this ?
thank you so much
Solved it, created an android manifest, and added these lines:
uses-feature android:name="android.hardware.vr.headtracking" android:required="true" android:version="1"
uses-permission android:name="com.oculus.permission.HAND_TRACKING"
``uses-feature android:name="oculus.software.handtracking" android:required="false" meta-data android:name="com.oculus.handtracking.frequency" android:value="HIGH"
Your answer