Skip to content

Commit

Permalink
Rename Quest Boundary Property (#739)
Browse files Browse the repository at this point in the history
Rename to match the official property name
  • Loading branch information
andybak authored Jul 10, 2024
1 parent fe8a3ee commit ffab94f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ jobs:
cache: Android_Vulkan
extraoptions: -btb-il2cpp
versionSuffix: 1
extra_defines: OCULUS_SUPPORTED USE_QUEST_PACKAGE_NAME ENABLE_CONTEXTUAL_BOUNDARYLESS_APP
extra_defines: OCULUS_SUPPORTED USE_QUEST_PACKAGE_NAME ENABLE_BOUNDARYLESS_APP

- name: Android Pico
targetPlatform: Android
Expand Down
6 changes: 3 additions & 3 deletions Assets/Editor/BuildTiltBrushPostProcess.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,13 @@ public void OnPostGenerateGradleAndroidProject(string path)
);
#endif

#if ENABLE_CONTEXTUAL_BOUNDARYLESS_APP
UnityEngine.Debug.Log("Add com.oculus.feature.CONTEXTUAL_BOUNDARYLESS_APP");
#if ENABLE_BOUNDARYLESS_APP
UnityEngine.Debug.Log("Add com.oculus.feature.BOUNDARYLESS_APP");
AddOrRemoveTag(doc,
androidNamespaceURI,
"/manifest",
"uses-feature",
"com.oculus.feature.CONTEXTUAL_BOUNDARYLESS_APP",
"com.oculus.feature.BOUNDARYLESS_APP",
true,
true,
"required", "true"
Expand Down

0 comments on commit ffab94f

Please sign in to comment.