Skip to content

Commit c615d83

Browse files
committed
Fix validation errors
1 parent ebbc28f commit c615d83

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-call-ios.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,17 @@ To implement the code needed to join participants to a rooms call, download from
2020
## Set up the project
2121

2222
### Creating the Xcode project
23+
2324
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.
2425

2526
:::image type="content" source="../../voice-video-calling/media/ios/xcode-new-ios-project.png" alt-text="Screenshot showing the New Project window within Xcode.":::
2627

2728
### Installing CocoaPods
29+
2830
Use this guide to [install CocoaPods](https://guides.cocoapods.org/using/getting-started.html) on your Mac.
2931

3032
### Install the package and dependencies with CocoaPods
33+
3134
1. To create a Podfile for your application, open the terminal and navigate to the project folder and run pod init.
3235

3336
2. Add the following code to the Podfile and save:
@@ -45,8 +48,8 @@ end
4548

4649
4. Open the `.xcworkspace` file with Xcode.
4750

48-
4951
### Request access to the microphone and camera
52+
5053
To access the device's microphone and camera, you need to update your app's Information Property List with `NSMicrophoneUsageDescription` and `NSCameraUsageDescription`. Set the associated value to a string to include in the dialog the system uses to request access from the user.
5154

5255
Right-click the `Info.plist` entry of the project tree and select Open As > Source Code. Add the following lines the top level `<dict>` section, and then save the file.
@@ -59,6 +62,7 @@ Right-click the `Info.plist` entry of the project tree and select Open As > Sour
5962
```
6063

6164
### Set up the app framework
65+
6266
Open your project's `ContentView.swift` file. At the top file, add an import declaration to import the `AzureCommunicationCalling` library and `AVFoundation`. Use `AVFoundation` to capture audio permission from code.
6367

6468
```Swift

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-call-web.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ms.author: t-siddiquim
1919
To implement the code needed to join participants to a rooms call, download from GitHub the [Room Call sample app](https://github.com/Azure-Samples/communication-services-javascript-quickstarts/tree/main/calling-rooms-quickstart).
2020

2121

22-
## Prerequisites
22+
## Web Prerequisites
2323

2424
- You need to have [Node.js 18](https://nodejs.org/dist/v18.18.0/). You can use the Microsoft Installer (MSI) to install it.
2525

0 commit comments

Comments
 (0)