Skip to content

Commit 384189c

Browse files
Merge pull request #215454 from radubulboaca/master
add direct links to rooms SDKs
2 parents 0fd4c27 + ecfc468 commit 384189c

File tree

7 files changed

+14
-1
lines changed

7 files changed

+14
-1
lines changed

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-call-android.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,6 @@ remoteParticipant.addOnRoleChangedListener(isRoleChanged);
7979
remoteParticipant.getRole();
8080
```
8181

82+
The ability to join a room call and display the roles of call participants is available in the Android Mobile Calling SDK version [2.4.0-beta.1](https://search.maven.org/artifact/com.azure.android/azure-communication-calling/2.4.0-beta.1/aar) and above.
83+
8284
You can learn more about roles of room call participants in the [rooms concept documentation](../../../concepts/rooms/room-concept.md#predefined-participant-roles-and-permissions).

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-call-ios.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,6 @@ func remoteParticipant(_ remoteParticipant: RemoteParticipant, didChangeRole arg
114114
}
115115
```
116116

117+
The ability to join a room call and display the roles of call participants is available in the iOS Mobile Calling SDK version [2.3.0-beta.1](https://github.com/Azure/Communication/releases/tag/v2.3.0-beta.1) and above.
118+
117119
You can learn more about roles of room call participants in the [rooms concept documentation](../../../concepts/rooms/room-concept.md#predefined-participant-roles-and-permissions).

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-call-web.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,6 @@ To display the role of the local or remote call participants, subscribe to the h
4444
}
4545
```
4646

47+
The ability to join a room call and display the roles of call participants is available in the Calling JavaScript SDK for web browsers [version 1.7.1-beta.1](https://www.npmjs.com/package/@azure/communication-calling/v/1.7.1-beta.1) and above.
48+
4749
You can learn more about roles of room call participants in the [rooms concept documentation](../../../concepts/rooms/room-concept.md#predefined-participant-roles-and-permissions).

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-java.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ mvn archetype:generate -DgroupId=com.contoso.app -DartifactId=rooms-quickstart -
3737

3838
### Include the package
3939

40+
You'll need to use the Azure Communication Rooms client library for Java [version 1.0.0-beta.2](https://search.maven.org/artifact/com.azure/azure-communication-rooms/1.0.0-beta.2/jar) or above.
41+
4042
#### Include the BOM file
4143

4244
Include the `azure-sdk-bom` to your project to take dependency on the General Availability (GA) version of the library. In the following snippet, replace the {bom_version_to_target} placeholder with the version number.
@@ -74,7 +76,7 @@ If you want to take dependency on a particular version of the library that isn't
7476
<dependency>
7577
<groupId>com.azure</groupId>
7678
<artifactId>azure-communication-rooms</artifactId>
77-
<version>1.0.0-alpha.1</version>
79+
<version>1.0.0-beta.1</version>
7880
</dependency>
7981
```
8082

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-javascript.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ npm init -y
4141

4242
### Install the packages
4343

44+
You'll need to use the Azure Communication Rooms client library for JavaScript [version 1.0.0-beta.1](https://www.npmjs.com/package/@azure/communication-rooms) or above.
45+
4446
Use the `npm install` command to install the below Communication Services SDKs for JavaScript.
4547

4648
```console

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-net.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ Install the Azure Communication Rooms client library for .NET with [NuGet][https
4848
```console
4949
dotnet add package Azure.Communication.Rooms
5050
```
51+
You'll need to use the Azure Communication Rooms client library for .NET [version 1.0.0-beta.1](https://www.nuget.org/packages/Azure.Communication.Rooms/1.0.0-beta.1) or above.
5152

5253
### Initialize a room client
5354

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-python.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ if __name__ == '__main__':
5454

5555
### Install the packages
5656

57+
You'll need to use the Azure Communication Rooms client library for Python [version 1.0.0b2](https://pypi.org/project/azure-communication-rooms/) or above.
58+
5759
From a console prompt, navigate to the directory containing the rooms.py file, then execute the following command:
5860

5961
```console

0 commit comments

Comments
 (0)