Search Results for

    Build XR Scene

    Switch to Android Platform

    1. From the menu bar, select File > Build Settings...

    2. In the Build Settings window, select Anroid > Switch Platform.

      SwitchPlatform

    3. Wait to load. The button changes to Switch.

    Build a Scene

    1. After switching to Android Platform, select Add Open Scenes.

      AddOpenScenes

    2. Check SampleScene box.

    3. Select Build.

    4. In the Build Android window, enter the File name and select the storage location of the APK file.

    Install APK via ADB

    Android Debug Bridge (ADB) is a command-line tool that helps developers perform various actions, such as installing and debugging apps, running shell commands, and managing files on the devices. ADB should be installed with Android SDK, and located inside the platform-tools subfolder of the Android SDK. For more information about Android Debug Bridge, please refers to Android Debug Bridge of Android Studio.

    1. Open the terminal.

    2. Check ADB configuration, run adb --version.

      Android Debug Bridge version 1.0.41
      Version 33.0.1-8253317
      Installed as <adb path>
      
    3. Check connected device.

      List of devices attached
      ZTS02R150041    device
      
    4. Once the APK file is created, run the adb install -r .\Demo.apk command to install it in the Play For Dream device.

    5. Upon successful installation, the terminal outputs the following:

      Performing Streamed Install
      Success
      
    In This Article