Skip to content

Commit

Permalink
Merge pull request #36 from GetStream/feature/update-docs
Browse files Browse the repository at this point in the history
[Docs] Add info on how to import a specific version of the SDK
  • Loading branch information
sierpinskid authored Dec 7, 2023
2 parents c5682ac + d7dc544 commit dccec1d
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion docusaurus/docs/Unity/01-basics/02-installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,19 @@ https://github.com/GetStream/stream-video-unity.git?path=/Packages/StreamVideo
```
![Select "add package from git URL..."](../assets/basics-installation-03.png)

After the package import is complete, **Stream's Video SDK for Unity** should be available in your project.
After the package import is complete, **Stream's Video SDK for Unity** should be available in your project.

## Using a specific SDK version

We recommend always using the most recent version of the SDK. However, you may want to use a particular version of the SDK.
In such case, you need to append the `#` symbol, followed by the version number, to the package URL as shown below:
```
https://github.com/GetStream/stream-video-unity.git?path=/Packages/StreamVideo#0.5.0
```
Here, the version `0.5.0` will be imported, even if a newer version is available.

:::caution

Importing the package with a version defined will lock this version indefinitely. The **Update** button in Unity's package manager will not update the package, and the only way to upgrade will be to remove the package and add it again without the version suffix.

:::

0 comments on commit dccec1d

Please sign in to comment.