Skip to content

Commit fde1a1a

Browse files
Merge pull request #292214 from rzdor/ruslanz/native-click-to-call-ga
remove preview label for click to call
2 parents 7f24aae + 99f4e4a commit fde1a1a

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

articles/communication-services/quickstarts/voice-video-calling/includes/teams-call-queue/teams-call-queue-android.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ ms.date: 09/26/2024
66
ms.author: jiyoonlee
77
---
88

9-
[!INCLUDE [public-preview-note](../../../../includes/public-preview-include.md)]
10-
119
In this quickstart you are going to learn how to start a call from Azure Communication Services user to Teams Call Queue. You are going to achieve it with the following steps:
1210

1311
1. Enable federation of Azure Communication Services resource with Teams Tenant.
@@ -113,7 +111,7 @@ android {
113111
114112
dependencies {
115113
...
116-
implementation ("com.azure.android:azure-communication-calling:2.6.0")
114+
implementation ("com.azure.android:azure-communication-calling:2.+")
117115
...
118116
}
119117
```
@@ -297,7 +295,7 @@ public class MainActivity extends AppCompatActivity {
297295
Toast.makeText(this, "Please enter callee", Toast.LENGTH_SHORT).show();
298296
return;
299297
}
300-
ArrayList<CommunicationIdentifier> participants = new ArrayList<>();
298+
List<CommunicationIdentifier> participants = new ArrayList<>();
301299
participants.add(new MicrosoftTeamsAppIdentifier(calleeId));
302300
StartCallOptions options = new StartCallOptions();
303301
call = agent.startCall(

articles/communication-services/quickstarts/voice-video-calling/includes/teams-call-queue/teams-call-queue-ios.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ ms.date: 09/26/2024
66
ms.author: jiyoonlee
77
---
88

9-
[!INCLUDE [public-preview-note](../../../../includes/public-preview-include.md)]
10-
119
In this quickstart you are going to learn how to start a call from Azure Communication Services user to Teams Call Queue. You are going to achieve it with the following steps:
1210

1311
1. Enable federation of Azure Communication Services resource with Teams Tenant.
@@ -59,7 +57,7 @@ To use in the calling App, we need to add a prefix to this ID. Currently, the fo
5957
```
6058

6159
For details, see [Use Azure CLI to Create and Manage Access Tokens](../../../identity/access-tokens.md?pivots=platform-azcli).
62-
- Minimum support for Teams calling applications: 2.14.0-beta.1
60+
- Minimum support for Teams calling applications: 2.15.0
6361

6462
## Setting up
6563

@@ -82,7 +80,7 @@ In Xcode, create a new iOS project and select the **App** template. This tutoria
8280
use_frameworks!
8381
8482
target 'AzureCommunicationCallingSample' do
85-
pod 'AzureCommunicationCalling', '~> 2.14.0-beta.1'
83+
pod 'AzureCommunicationCalling', '~> 2.15.0'
8684
end
8785
```
8886

articles/communication-services/quickstarts/voice-video-calling/includes/teams-call-queue/teams-call-queue-windows.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ ms.date: 09/26/2024
66
ms.author: jiyoonlee
77
---
88

9-
[!INCLUDE [public-preview-note](../../../../includes/public-preview-include.md)]
10-
119
In this quickstart you are going to learn how to start a call from Azure Communication Services user to Teams Call Queue. You are going to achieve it with the following steps:
1210

1311
1. Enable federation of Azure Communication Services resource with Teams Tenant.
@@ -62,7 +60,7 @@ To complete this tutorial, you need the following prerequisites:
6260
```
6361

6462
For details, see [Use Azure CLI to Create and Manage Access Tokens](../../../identity/access-tokens.md?pivots=platform-azcli).
65-
- Minimum support for Teams calling applications: 1.10.0-beta.1
63+
- Minimum support for Teams calling applications: 1.11.0
6664

6765

6866
## Setting up

0 commit comments

Comments
 (0)