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
Get the sample iOS application for this [quickstart](https://github.com/Azure-Samples/communication-services-ios-quickstarts/tree/main/ui-library-quick-start) in the open source Azure Communication Services [UI Library for iOS](https://github.com/Azure/communication-ui-library-ios).
11
+
Get the sample iOS application for this [quickstart](https://github.com/Azure-Samples/communication-services-ios-quickstarts/tree/main/ui-calling) in the open source Azure Communication Services [UI Library for iOS](https://github.com/Azure/communication-ui-library-ios).
Get the sample iOS application for this [quickstart](https://github.com/Azure-Samples/communication-services-ios-quickstarts/tree/main/ui-library-quick-start/Chat) in the open source Azure Communication Services [UI Library for iOS](https://github.com/Azure/communication-ui-library-ios).
11
+
Get the sample iOS application for this [quickstart](https://github.com/Azure-Samples/communication-services-ios-quickstarts/tree/main/ui-chat) in the open source Azure Communication Services [UI Library for iOS](https://github.com/Azure/communication-ui-library-ios).
12
12
13
13
## Prerequisites
14
14
@@ -32,7 +32,7 @@ In Xcode, create a new project:
32
32
33
33
:::image type="content" source="../../media/xcode-new-project-template-select.png" alt-text="Screenshot that shows the Xcode new project dialog, with iOS and the App template selected.":::
34
34
35
-
1. In **Choose options for your new project**, for the product name, enter **Chat**. For the interface, select **Storyboard**. The quickstart doesn't create tests, so you can clear the **Include Tests** checkbox.
35
+
1. In **Choose options for your new project**, for the product name, enter **UILibraryQuickStart**. For the interface, select **Storyboard**. The quickstart doesn't create tests, so you can clear the **Include Tests** checkbox.
36
36
37
37
:::image type="content" source="../../media/xcode-new-project-details.png" alt-text="Screenshot that shows setting new project options in Xcode.":::
38
38
@@ -42,14 +42,14 @@ In Xcode, create a new project:
42
42
43
43
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.
44
44
45
-
1. Add the following code to your Podfile. Replace `Chat` with your project name.
45
+
1. Add the following code to your Podfile. Replace `UILibraryQuickStart` with your project name.
46
46
47
47
```ruby
48
48
platform :ios, '14.0'
49
49
50
-
target 'Chat'do
50
+
target 'UILibraryQuickStart'do
51
51
use_frameworks!
52
-
pod 'AzureCommunicationUIChat', '0.1.0-beta.1'
52
+
pod 'AzureCommunicationUIChat', '1.0.0-beta1'
53
53
end
54
54
```
55
55
@@ -69,19 +69,20 @@ To initialize the composite:
69
69
70
70
1. Go to `ViewController`.
71
71
72
-
1. Add the following code to initialize your composite components for a chat. Replace`<USER_ID>` with user identifier. Replace`<USER_ACCESS_TOKEN>` with your access token. Replace`<ENDPOINT_URL>` with your endpoint URL. Replace`<DISPLAY_NAME>` with your name. (The string length limit for`<DISPLAY_NAME>` is 256 characters). Replace`<THREAD_ID>` with your chat thread ID.
72
+
1. Add the following code to initialize your composite components for a chat. Replace`<USER_ID>` with user identifier. Replace`<USER_ACCESS_TOKEN>` with your access token. Replace`<ENDPOINT_URL>` with your endpoint URL. Replace`<THREAD_ID>` with your chat thread ID. Replace`<DISPLAY_NAME>` with your name. (The string length limit for`<DISPLAY_NAME>` is 256 characters).
0 commit comments