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/chat/includes/meeting-interop-swift.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
@@ -23,7 +23,7 @@ If you'd like to skip ahead to the end, you can download this quickstart as a sa
23
23
```azurecli-interactive
24
24
az communication identity token issue --scope voip --connection-string "yourConnectionString"
25
25
```
26
-
For details, see [Use Azure CLI to Create and Manage Access Tokens](../../../identity/access-tokens.md?pivots=platform-azcli).
26
+
For details, see [Use Azure CLI to Create and Manage Access Tokens](../../../../identity/access-tokens.md?pivots=platform-azcli).
27
27
28
28
29
29
## Setting up
@@ -32,7 +32,7 @@ For details, see [Use Azure CLI to Create and Manage Access Tokens](../../../ide
32
32
33
33
In Xcode, create a new iOS project and select the Single View App template. This tutorial uses the [SwiftUI framework](https://developer.apple.com/xcode/swiftui/), so you should set the Language to Swift and the User Interface to SwiftUI. You're not going to create tests during this quick start. Feel free to uncheck Include Tests.
34
34
35
-
:::image type="content" source="../../media/ios/xcode-new-ios-project.png" alt-text="Screenshot showing the New Project window within Xcode.":::
35
+
:::image type="content" source="../media/ios/xcode-new-ios-project.png" alt-text="Screenshot showing the New Project window within Xcode.":::
36
36
37
37
38
38
### Installing CocoaPods
@@ -66,14 +66,14 @@ In order to access the device's microphone, you need to update your app's Inform
66
66
67
67
Under the target, select the `Info` tab and add a string for ‘Privacy - Microphone Usage Description’
68
68
69
-
:::image type="content" source="../../media/ios/xcode-add-microphone-permission.png" alt-text="Screenshot showing adding microphone usage within Xcode.":::
69
+
:::image type="content" source="../media/ios/xcode-add-microphone-permission.png" alt-text="Screenshot showing adding microphone usage within Xcode.":::
70
70
71
71
### Disable User Script Sandboxing
72
72
73
73
Some of the scripts within the linked libraries write files during the build process. To allow this, disable the User Script Sandboxing in Xcode.
74
74
Under the build settings, search for `sandbox` and set `User Script Sandboxing` to `No`.
75
75
76
-
:::image type="content" source="../../media/ios/disable-user-script-sandbox.png" alt-text="Screenshot showing disabling user script sandboxing within Xcode.":::
76
+
:::image type="content" source="../media/ios/disable-user-script-sandbox.png" alt-text="Screenshot showing disabling user script sandboxing within Xcode.":::
77
77
78
78
## Joining the meeting chat
79
79
@@ -102,7 +102,7 @@ let displayName: String = "Quickstart User"
102
102
103
103
Replace `<ADD_YOUR_ENDPOINT_URL_HERE>` with the endpoint for your Communication Services resource.
104
104
Replace `<ADD_YOUR_USER_TOKEN_HERE>` with the token generated above, via the Azure client command line.
105
-
Read more about user access tokens: [User Access Token](../../identity/access-tokens.md)
105
+
Read more about user access tokens: [User Access Token](../../../../identity/access-tokens.md)
106
106
107
107
Replace `Quickstart User` with the display name you'd like to use in the Chat.
0 commit comments