You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/communication-services/how-tos/calling-sdk/includes/install-sdk/install-sdk-ios.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ You're not going to create tests during this quickstart. Feel free to clear the
18
18
19
19
### Install the package and dependencies by using CocoaPods
20
20
21
-
1. Create a Podfile for your application, like this:
21
+
1. Create a Podfile for your application, like this example:
22
22
23
23
```
24
24
platform :ios, '13.0'
@@ -32,9 +32,9 @@ You're not going to create tests during this quickstart. Feel free to clear the
32
32
33
33
### Request access to the microphone
34
34
35
-
To access the device's microphone, you need to update your app's information property list with `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.
35
+
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.
36
36
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.
38
38
39
39
```xml
40
40
<key>NSMicrophoneUsageDescription</key>
@@ -77,7 +77,7 @@ public func fetchTokenSync(then onCompletion: TokenRefreshOnCompletion) {
77
77
}
78
78
```
79
79
80
-
Pass the `CommunicationTokenCredential` object that you created to `CallClient`, and set the display name.
80
+
Pass the `CommunicationTokenCredential` object that you created to `CallClient`, and set the display name:
Copy file name to clipboardExpand all lines: articles/communication-services/how-tos/calling-sdk/includes/install-sdk/install-sdk-windows.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,22 +5,22 @@ ms.topic: include
5
5
ms.date: 05/30/2023
6
6
ms.author: jowang
7
7
---
8
-
## Setting up
8
+
## Set up
9
9
10
10
### Create the Visual Studio project
11
11
12
-
For UWP app, in Visual Studio 2022, create a new `Blank App (Universal Windows)` project. After entering the project name, feel free to pick any Windows SDK later than `10.0.17763.0`.
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.
13
13
14
-
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.
14
+
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.
15
15
16
-
### Install the package and dependencies with NuGet Package Manager
16
+
### Install the package and dependencies by using NuGet Package Manager
17
17
18
18
The Calling SDK APIs and libraries are publicly available via a NuGet package.
19
19
20
20
The following steps exemplify how to find, download, and install the Calling SDK NuGet package:
21
21
22
22
1. Open NuGet Package Manager (**Tools** > **NuGet Package Manager** > **Manage NuGet Packages for Solution**).
23
-
2. Select **Browse**, and then enter **Azure.Communication.Calling.WindowsClient** in the search box.
23
+
2. Select **Browse**, and then enter `Azure.Communication.Calling.WindowsClient` in the search box.
24
24
3. Make sure that the **Include prerelease** check box is selected.
25
25
4. Select the `Azure.Communication.Calling.WindowsClient` package, and then select `Azure.Communication.Calling.WindowsClient`[1.4.0-beta.1](https://www.nuget.org/packages/Azure.Communication.Calling.WindowsClient/1.4.0-beta.1) or a newer version.
26
26
5. Select the checkbox that corresponds to the Communication Services project on the right-side tab.
Copy file name to clipboardExpand all lines: articles/communication-services/how-tos/calling-sdk/includes/record-calls/record-calls-ios.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ let serverCallId = call.info.getServerCallId(){ (serverId, error) in }
49
49
50
50
When you start recording from the server, the event `didChangeRecordingState` is triggered and the value of `recordingFeature.isRecordingActive` is `true`.
51
51
52
-
Just like starting the call recording, if you want to stop the call recording, you need to get the `ServerCallId` and send it to your recording server so that it can stop the recording.
52
+
Just like starting the call recording, if you want to stop the call recording, you need to get `ServerCallId` and send it to your recording server so that it can stop the recording:
53
53
54
54
```swift
55
55
// Send serverCallId to your recording server to stop the call recording.
0 commit comments