Jump to content

Focus 3 - Side loaded apps from Unity launch on build and run, but do not show up in the launcher list after exiting the app


wirelessdreamer

Recommended Posts

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...