Skip to content

Commit e375a6c

Browse files
committed
Update image links
1 parent b242499 commit e375a6c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/communication-services/quickstarts/chat/includes/meeting-interop-swift.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ If you'd like to skip ahead to the end, you can download this quickstart as a sa
2323
```azurecli-interactive
2424
az communication identity token issue --scope voip --connection-string "yourConnectionString"
2525
```
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).
2727

2828

2929
## Setting up
@@ -32,7 +32,7 @@ For details, see [Use Azure CLI to Create and Manage Access Tokens](../../../ide
3232

3333
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.
3434

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.":::
3636

3737

3838
### Installing CocoaPods
@@ -66,14 +66,14 @@ In order to access the device's microphone, you need to update your app's Inform
6666

6767
Under the target, select the `Info` tab and add a string for ‘Privacy - Microphone Usage Description’
6868

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.":::
7070

7171
### Disable User Script Sandboxing
7272

7373
Some of the scripts within the linked libraries write files during the build process. To allow this, disable the User Script Sandboxing in Xcode.
7474
Under the build settings, search for `sandbox` and set `User Script Sandboxing` to `No`.
7575

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.":::
7777

7878
## Joining the meeting chat
7979

@@ -102,7 +102,7 @@ let displayName: String = "Quickstart User"
102102

103103
Replace `<ADD_YOUR_ENDPOINT_URL_HERE>` with the endpoint for your Communication Services resource.
104104
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)
106106

107107
Replace `Quickstart User` with the display name you'd like to use in the Chat.
108108

0 commit comments

Comments
 (0)