Skip to content

Commit 976c165

Browse files
committed
Add another pico helper
needed for Neo 3 backwards compat
1 parent 56a26df commit 976c165

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

Editor/FeatureBuildHooks/OpenXRAndroidSettingsBuildHook.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,16 @@ protected override ManifestRequirement ProvideManifestRequirementExt()
106106
{ "value", "OpenXR" }
107107
}
108108
},
109+
// Pico helper, required to run on Neo 3
110+
new ManifestElement()
111+
{
112+
ElementPath = new List<string> { "manifest", "application", "meta-data" },
113+
Attributes = new Dictionary<string, string>
114+
{
115+
{ "name", "pvr.sdk.version_code" },
116+
{ "value", "5900" }
117+
}
118+
},
109119
};
110120

111121
// Compositor driven splash screen

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "dev.mikesky.openxrextensions",
33
"displayName": "OpenXR Extensions",
4-
"version": "0.4.0",
4+
"version": "0.4.1",
55
"unity": "2021.3",
66
"description": "OpenXR extensions for your Unity project. No vendor bloat.",
77
"keywords": [

0 commit comments

Comments
 (0)