Forum Discussion

🚨 This forum is archived and read-only. To submit a forum post, please visit our new Developer Forum. 🚨
Luis.Zan's avatar
Luis.Zan
Protege
1 year ago
Solved

Error installing Unity's Meta XR All-in-One SDK v62 (and 63) package

I'm getting a console error upon installing Meta XR Core SDK on my Unity 2021.3.36f1 project: [Package Manager Window] Error while getting access token: invalid configuration from Unity Connect Uni...
  • pranav_suresh7's avatar
    pranav_suresh7
    1 year ago

    Adding Meta's npm.developer.oculus.com as a scoped registry  fixed this for me. I tried manual mode also it didn't worked out. Only scopedRegistries as source worked out for me. Try adding this in manifest file under Packages folder.

    "scopedRegistries": [
        {
          "name": "Meta",
          "url": "https://npm.developer.oculus.com",
          "scopes": [
            "com.meta.xr.sdk.audio",
            "com.meta.xr.sdk.core",
            "com.meta.xr.sdk.interaction",
            "com.meta.xr.sdk.interaction.ovr",
            "com.meta.xr.sdk.platform",
            "com.meta.xr.sdk.voice",
            "com.meta.xr.sdk.voice.composer",
            "com.meta.xr.sdk.voice.dictation",
            "com.meta.xr.sdk.voice.telemetry",
            "com.meta.xr.simulator",
            "com.meta.xr.sdk.sharedassets",
            "com.meta.xr.sdk.interaction.ovr.samples"
          ]
        }
      ]