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/quickstarts/ui-library/includes/get-started-call/android.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
@@ -315,7 +315,7 @@ CallCompositeRemoteOptions remoteOptions = new CallCompositeRemoteOptions(
315
315
316
316
You can join to a Teams meeting using two mechanisms:
317
317
318
-
- Teams meeting URL or Teams meetiong short URL
318
+
- Teams meeting URL or Teams meeting short URL
319
319
- Teams Meeting ID and Passcode
320
320
321
321
The Teams meeting link can be retrieved using Graph APIs, which is detailed in [Graph documentation](/graph/api/onlinemeeting-createorget?tabs=http&view=graph-rest-beta&preserve-view=true).
@@ -355,8 +355,8 @@ CallCompositeRemoteOptions remoteOptions = new CallCompositeRemoteOptions(
355
355
#### Join via Teams Meeting ID and Passcode
356
356
357
357
The `TeamsMeetingIdLocator` locates a meeting using a meeting ID and passcode. These can be found under a Teams meeting's join info.
358
-
A Teams meeting ID will be 12 characters long and will consist of numeric digits grouped in threes (i.e. `000 000 000 000`).
359
-
A passcode will consist of 6 alphabet characters (i.e. `aBcDeF`). The passcode is case sensitive.
358
+
A Teams meeting ID is 12 characters long and consists of numeric digits grouped in threes (i.e. `000 000 000 000`).
359
+
A passcode consists of 6 alphabet characters (i.e. `aBcDeF`). The passcode is case sensitive.
360
360
361
361
#### [Kotlin](#tab/kotlin)
362
362
@@ -376,8 +376,8 @@ A passcode will consist of 6 alphabet characters (i.e. `aBcDeF`). The passcode i
To set up a Azure Communication Services Rooms call, initialize a `CallCompositeRoomLocator`, supply it to the `CallCompositeRemoteOptions` object and set `CallCompositeParticipantRole` to the `CallCompositeLocalOptions` by `setRoleHint()`.
380
-
`CallComposite`will use role hint before connecting to the call. Once call is connected, actual up-to-date participant role is retrieved from Azure Communication Services.
379
+
To set up an Azure Communication Services Rooms call, initialize a `CallCompositeRoomLocator`, supply it to the `CallCompositeRemoteOptions` object and set `CallCompositeParticipantRole` to the `CallCompositeLocalOptions` by `setRoleHint()`.
380
+
`CallComposite`uses role hint before connecting to the call. Once call is connected, actual up-to-date participant role is retrieved from Azure Communication Services.
381
381
382
382
383
383
For more information about Rooms, how to create and manage one see [Rooms Quickstart](../../../rooms/get-started-rooms.md)
Copy file name to clipboardExpand all lines: articles/communication-services/quickstarts/ui-library/includes/get-started-call/ios.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ In Xcode, create a new project:
37
37
38
38
### Install the package and dependencies
39
39
40
-
1. (Optional) For MacBook with M1, install and enable [Rosetta](https://support.apple.com/en-us/HT211861) in Xcode.
40
+
1. (Optional) For MacBook with M1, install, and enable [Rosetta](https://support.apple.com/en-us/HT211861) in Xcode.
41
41
42
42
1. In your project root directory, run `pod init` to create a Podfile. If you encounter an error, update [CocoaPods](https://guides.cocoapods.org/using/getting-started.html) to the current version.
43
43
@@ -54,11 +54,11 @@ In Xcode, create a new project:
54
54
55
55
1. Run`pod install --repo-update`.
56
56
57
-
1. InXcode, open the generated*.xcworkspace* file.
57
+
1. InXcode, open the generated.xcworkspace* file.
58
58
59
59
### Request access to device hardware
60
60
61
-
To access the device's hardware, including the microphone and camera, update your app's information property list. Set the associated value to a string that's included in the dialog the system uses to request access from the user.
61
+
To access the device's hardware, including the microphone, and camera, update your app's information property list. Set the associated value to a string that's included in the dialog the system uses to request access from the user.
62
62
63
63
1. Right-click the `Info.plist` entry of the project tree and select **Open As** > **Source Code**. Add the following lines to the top level `<dict>` section, and then save the file.
64
64
@@ -199,7 +199,7 @@ For more information about using a group ID for calls, see [Manage calls](../../
199
199
200
200
You can join to a Teams meeting using two mechanisms:
201
201
202
-
- Teams meeting URL or Teams meetiong short URL
202
+
- Teams meeting URL or Teams meeting short URL
203
203
- Teams Meeting ID and Passcode
204
204
205
205
The Teams meeting link can be retrieved using Graph APIs, which is detailed in [Graph documentation](/graph/api/onlinemeeting-createorget?tabs=http&view=graph-rest-beta&preserve-view=true).
@@ -209,7 +209,7 @@ You can also get the required meeting information from the **Join Meeting** URL
209
209
210
210
#### Join via Teams meeting URL
211
211
212
-
To join a Microsoft Teams meeting, inside the `startCallComposite` function, initialize a `RemoteOptions` instance for the `.teamsMeeting` locator. Replace `<TEAMS_MEETING_LINK>` with the Teams meeting link for your call. Replace `<DISPLAY_NAME>` with your name.
212
+
To join a Microsoft Teams meeting, inside the `startCallComposite` function, initialize a `RemoteOptions` instance for the `.teamsMeeting` locator. Replace `<TEAMS_MEETING_LINK>` with the Teams meeting link for your call. Replace `<DISPLAY_NAME>` with your name.
213
213
214
214
```swift
215
215
let remoteOptions = RemoteOptions(for: .teamsMeeting(teamsLink: "<TEAMS_MEETING_LINK>"),
@@ -220,8 +220,8 @@ let remoteOptions = RemoteOptions(for: .teamsMeeting(teamsLink: "<TEAMS_MEETING_
220
220
#### Join via Teams Meeting ID and Passcode
221
221
222
222
The `TeamsMeetingIdLocator` locates a meeting using a meeting ID and passcode. These can be found under a Teams meeting's join info.
223
-
ATeams meeting IDwill be 12 characters long andwill consist of numeric digits grouped in threes (i.e. `000 000 000 000`).
224
-
A passcode will consist of 6 alphabet characters (i.e. `aBcDeF`). The passcode is case sensitive.
223
+
ATeams meeting IDis 12 characters long andconsists of numeric digits grouped in threes (i.e. `000 000 000 000`).
224
+
A passcode consists of 6 alphabet characters (i.e. `aBcDeF`). The passcode is case sensitive.
225
225
226
226
```swift
227
227
@@ -232,11 +232,11 @@ A passcode will consist of 6 alphabet characters (i.e. `aBcDeF`). The passcode i
To set up aAzureCommunicationServicesRooms call, inside the `startCallComposite` function, initialize a `RemoteOptions` instance for the `.roomCall` locator. Replace`<ROOM_ID>` with the RoomIDfor your call. Initialize a `LocalOptions` instance with `roleHint`.
235
+
To set up anAzureCommunicationServicesRooms call, inside the `startCallComposite` function, initialize a `RemoteOptions` instance for the `.roomCall` locator. Replace`<ROOM_ID>` with the RoomIDfor your call. Initialize a `LocalOptions` instance with `roleHint`.
236
236
237
237
Replace`<DISPLAY_NAME>` with your name.
238
238
239
-
`CallComposite`will use role hint before connecting to the call. Once call is connected, actual up-to-date participant role is retrieved from AzureCommunicationServices.
239
+
`CallComposite`uses role hint before connecting to the call. Once call is connected, actual up-to-date participant role is retrieved from AzureCommunicationServices.
240
240
241
241
242
242
For more information about Rooms, how to create and manage one see [RoomsQuickstart](../../../rooms/get-started-rooms.md)
@@ -316,7 +316,7 @@ For more information about localization and for a list of supported languages, s
316
316
317
317
### Subscribe to CallComposite call state changed event
318
318
319
-
You can implement closures to act on composite events. The call states will be sent to the call state changed handler.
319
+
You can implement closures to act on composite events. The call states are sent to the call state changed handler.
320
320
321
321
The following example shows an event for a call state changed.
0 commit comments