Skip to content

Commit b51e737

Browse files
committed
two-communication-services-articles
1 parent cf701cb commit b51e737

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

articles/communication-services/how-tos/calling-sdk/includes/install-sdk/install-sdk-android.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.author: rifox
88

99
## Install the SDK
1010

11-
Locate your project-level *build.gradle* file and add `mavenCentral()` to the list of repositories under `buildscript` and `allprojects`:
11+
Locate your project-level `build.gradle` file and add `mavenCentral()` to the list of repositories under `buildscript` and `allprojects`:
1212

1313
```groovy
1414
buildscript {
@@ -30,7 +30,7 @@ allprojects {
3030
}
3131
```
3232

33-
Then, in your module-level *build.gradle* file, add the following lines to the `dependencies` section:
33+
Then, in your module-level `build.gradle` file, add the following lines to the `dependencies` section:
3434

3535
```groovy
3636
dependencies {
@@ -40,7 +40,7 @@ dependencies {
4040
}
4141
```
4242

43-
### Initialize the required objects
43+
## Initialize the required objects
4444

4545
To create a `CallAgent` instance, you have to call the `createCallAgent` method on a `CallClient` instance. This call asynchronously returns a `CallAgent` instance object.
4646

articles/communication-services/how-tos/calling-sdk/includes/install-sdk/install-sdk-ios.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You're not going to create tests during this quickstart. Feel free to clear the
3434
3535
To access the device's microphone, you need to update your app's information property list by using `NSMicrophoneUsageDescription`. You set the associated value to a string that will be included in the dialog that the system uses to request access from the user.
3636
37-
Right-click the *Info.plist* entry of the project tree, and then select **Open As** > **Source Code**. Add the following lines in the top-level `<dict>` section, and then save the file.
37+
Right-click the **Info.plist** entry of the project tree, and then select **Open As** > **Source Code**. Add the following lines in the top-level `<dict>` section, and then save the file.
3838
3939
```xml
4040
<key>NSMicrophoneUsageDescription</key>
@@ -43,14 +43,14 @@ Right-click the *Info.plist* entry of the project tree, and then select **Open A
4343

4444
### Set up the app framework
4545

46-
Open your project's *ContentView.swift* file. Add an `import` declaration to the top of the file to import the `AzureCommunicationCalling` library. In addition, import `AVFoundation`. You'll need it for audio permission requests in the code.
46+
Open your project's `ContentView.swift` file. Add an `import` declaration to the top of the file to import the `AzureCommunicationCalling` library. In addition, import `AVFoundation`. You'll need it for audio permission requests in the code.
4747

4848
```swift
4949
import AzureCommunicationCalling
5050
import AVFoundation
5151
```
5252

53-
## Initialize CallAgent
53+
### Initialize CallAgent
5454

5555
To create a `CallAgent` instance from `CallClient`, you have to use a `callClient.createCallAgent` method that asynchronously returns a `CallAgent` object after it's initialized.
5656

articles/communication-services/how-tos/calling-sdk/includes/install-sdk/install-sdk-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.author: jowang
99

1010
### Create the Visual Studio project
1111

12-
For a UWP app, in Visual Studio 2022, create a new **Blank App (Universal Windows)** project. After you enter the project name, feel free to choose any Windows SDK later than 10.0.17763.0.
12+
For a Universal Windows Platform (UWP) app, in Visual Studio 2022, create a new **Blank App (Universal Windows)** project. After you enter the project name, feel free to choose any Windows SDK later than 10.0.17763.0.
1313

1414
For a WinUI 3 app, create a new project with the **Blank App, Packaged (WinUI 3 in Desktop)** template to set up a single-page WinUI 3 app. [Windows App SDK version 1.3](/windows/apps/windows-app-sdk/stable-channel#version-13) or later is required.
1515

articles/communication-services/how-tos/calling-sdk/includes/push-notifications/push-notifications-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ implementation 'com.google.firebase:firebase-core:16.0.8'
4242
implementation 'com.google.firebase:firebase-messaging:20.2.4'
4343
```
4444

45-
In your project level's *build.gradle* file, add the following line in the `dependencies` section if it's not already there:
45+
In your project level's `build.gradle` file, add the following line in the `dependencies` section if it's not already there:
4646

4747
```groovy
4848
classpath 'com.google.gms:google-services:4.3.3'

articles/communication-services/how-tos/calling-sdk/includes/push-notifications/push-notifications-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Before you start the tasks of registering for, handling, and showing a Windows n
8686
}
8787
```
8888

89-
### Register for push notifications
89+
## Register for push notifications
9090

9191
To register for push notifications, call `RegisterForPushNotificationAsync()` on a `CallAgent` instance with the WNS registration channel obtained on application initialization.
9292

articles/communication-services/how-tos/calling-sdk/push-notifications.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,11 @@ zone_pivot_groups: acs-plat-web-ios-android-windows
1616

1717
# Enable push notifications for calls
1818

19-
In this article, you learn how to enable push notifications for Azure Communication Services calls. Setting up the push notifications lets your users know when they have an incoming call, which they can then answer.
19+
Push notifications send information from your application to users' devices. You can use push notifications to show a dialog, play a sound, or display incoming call into the app's UI layer.
2020

21-
## Overview of push notifications
21+
In this article, you learn how to enable push notifications for Azure Communication Services calls. Communication Services provides integrations with [Azure Event Grid](../../../event-grid/overview.md) and [Azure Notification Hubs](../../../notification-hubs/notification-hubs-push-notification-overview.md) that enable you to add push notifications to your apps.
2222

23-
Push notifications send information from your application to users' devices. You can use push notifications to show a dialog, play a sound, or display incoming call into the app UI layer. Azure Communication Services provides integrations with [Azure Event Grid](../../../event-grid/overview.md) and [Azure Notification Hubs](../../../notification-hubs/notification-hubs-push-notification-overview.md) that enable you to add push notifications to your apps.
24-
25-
### TTL token
23+
## Overview of TTL tokens
2624

2725
The time-to-live (TTL) token is a setting that determines the length of time that a notification token stays valid before becoming invalid. This setting is useful for applications where user engagement doesn't require daily interaction but remains critical over longer periods.
2826

articles/communication-services/quickstarts/voice-video-calling/get-started-android-calling-chat-sdk.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ Specify the version of the Calling and Chat SDKs for Android in your application
4545
}
4646
```
4747

48-
The example uses the latest release version of the Chat SDK package `com.azure.android:azure-communication-chat`, but you can use any version. However, the version of the Trouter package `com.microsoft:trouter-client-android` that's included with the Chat SDK package `com.azure.android:azure-communication-chat` needs to be excluded. When the application is built, it will use the Trouter package version included by the Calling SDK package `com.azure.android:azure-communication-calling`.
48+
The example uses the latest release version of the Chat SDK package `com.azure.android:azure-communication-chat`, but you can use any version.
49+
50+
The version of the Trouter package `com.microsoft:trouter-client-android` that's included with the Chat SDK package `com.azure.android:azure-communication-chat` needs to be excluded. When the application is built, it will use the Trouter package version included by the Calling SDK package `com.azure.android:azure-communication-calling`.
4951

5052
## Related content
5153

0 commit comments

Comments
 (0)