wirelessdreamer Posted February 16, 2022 Share Posted February 16, 2022 We've been doing tests porting our app from Quest to Focus 3 over the past month, but are confused why it seems apps will build and run, but are not accessible after the first launch. Has anyone else experienced this behavior on the Focus 3? Link to comment Share on other sites More sharing options...
wirelessdreamer Posted February 16, 2022 Author Share Posted February 16, 2022 I don't know if this is related, but the store option is also missing on our headset. Link to comment Share on other sites More sharing options...
Alex_HTC Posted February 16, 2022 Share Posted February 16, 2022 Hi, Thanks for the great question! This is a symptom of our launcher not recognizing the app as a valid vr app (It might appear in the 2d apps view). A developer may see additional issues driven by the lack of these issues pop up if you submit to a store, use the mdm, stream using vbs, or use drm. The way to address this is to modify your android manifest to include the relevant entries. A complete guide is here: The minimal entry for the app to show up in the launcher is to make sure that the category android.intent.category.LAUNCHER is in the manifest, with the other entries being added for context: <activity android:name="com.htc.vr.unity.WVRUnityVRActivity" android:label="@string/app_name" android:enableVrMode="@string/wvr_vr_mode_component"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> <category android:name="com.htc.intent.category.VRAPP" /> </intent-filter> Hope this helps! -Alex Link to comment Share on other sites More sharing options...
wirelessdreamer Posted February 17, 2022 Author Share Posted February 17, 2022 Updating my manafest resolved the issue of it not showing up. I still don't have the store option though. Link to comment Share on other sites More sharing options...
Alex_HTC Posted February 18, 2022 Share Posted February 18, 2022 @wirelessdreamer When you mention a store option, what is being referenced more specifically? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now