# BuildingOpenBrush

## Android

### Audio

* TiltBrush uses GoogleVR audio regardless of platform, and if the platform SDK supplies audio.
  * `AudioManager` uses `GvrAudioSource`.
  * (GoogleVR is deprecated)\[<http://docs.unity3d.com/Packages/com.unity.xr.googlevr.android@2.0/changelog/CHANGELOG.html>] to be removed in 2020.1.
  * WORK: Investigate replacement. See [Issue 148](https://github.com/icosa-foundation/open-brush/issues/148).

## XR

The `UnityEditor.XR.Management` plugin offers to remove legacy packages. See `class XRLegacyUninstaller`.

```
private static List<string> k_PackagesToBeRemoved = new List<string>(){
            "com.unity.xr.googlevr.android",
            "com.unity.xr.googlevr.ios",
            "com.unity.xr.oculus.android",
            "com.unity.xr.oculus.standalone",
            "com.unity.xr.openvr.standalone",
            "com.unity.xr.windowsmr.metro",
        };
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.openbrush.app/developer-notes/github-wiki/buildingopenbrush.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
