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/voice-video-calling/includes/get-started/get-started-android.md
+20-18Lines changed: 20 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ From Android Studio, select Start a new Android Studio project.
36
36
37
37
:::image type="content" source="../../media/android/studio-new-project.png" alt-text="Screenshot showing the 'Start a new Android Studio Project' button selected in Android Studio.":::
38
38
39
-
Select "Empty Activity" project template under "Phone and Tablet".
39
+
Select "Empty Views Activity" project template under "Phone and Tablet".
40
40
41
41
:::image type="content" source="../../media/android/studio-blank-activity.png" alt-text="Screenshot showing the 'Empty Activity' option selected in the Project Template Screen.":::
42
42
@@ -48,23 +48,21 @@ Select Minimum SDK of "API 26: Android 8.0 (Oreo)" or greater.
48
48
### Install the package
49
49
50
50
<!-- TODO: update with instructions on how to download, install and add package to project -->
51
-
Locate your project level build.gradle and make sure to add`mavenCentral()`to the list of repositories under `buildscript` and `allprojects`
51
+
Locate your project `settings.gradle.kts` and make sure to see`mavenCentral()`at the list of repositories under `pluginManagement` and `dependencyResolutionManagement`
Copy file name to clipboardExpand all lines: articles/communication-services/quickstarts/voice-video-calling/includes/get-started/get-started-windows.md
+58-8Lines changed: 58 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ In Visual Studio, create a new project with the **Blank App (Universal Windows)*
38
38
39
39
#### Install the package
40
40
41
-
Right select your project and go to `Manage Nuget Packages` to install `Azure.Communication.Calling.WindowsClient`[1.2.0-beta.1](https://www.nuget.org/packages/Azure.Communication.Calling.WindowsClient/1.2.0-beta.1) or superior. Make sure Include Preleased is checked.
41
+
Right select your project and go to `Manage Nuget Packages` to install `Azure.Communication.Calling.WindowsClient`[1.4.0](https://www.nuget.org/packages/Azure.Communication.Calling.WindowsClient/1.4.0) or superior. Make sure `Include Prerelease` is checked if you want to see the versions for public preview.
42
42
43
43
#### Request access
44
44
@@ -64,6 +64,9 @@ Open the `MainPage.xaml` of your project and add the `Grid` node to your `Page`:
You can build and run the code on Visual Studio. For solution platforms, we support `ARM64`, `x64` and `x86`.
398
+
You can build and run the code on Visual Studio. For solution platforms, we support `ARM64`, `x64`, and `x86`.
349
399
350
400
You can make an outbound call by providing a user ID in the text field and clicking the `Start Call/Join` button. Calling `8:echo123` connects you with an echo bot, this feature is great for getting started and verifying your audio devices are working.
351
401
@@ -572,7 +622,7 @@ Add the implementation to the `CallButton_Click` to start various kinds of calls
572
622
{
573
623
varcallString=CalleeTextBox.Text.Trim();
574
624
575
-
call=awaitStartAcsCallAsync(callString);
625
+
call=awaitStartCallAsync(callString);
576
626
if (call!=null)
577
627
{
578
628
call.StateChanged+=OnStateChangedAsync;
@@ -657,7 +707,7 @@ In the meeting join scenario, `JoinCallOptions` is made available to customize t
657
707
Once a `StartCallOptions` object is obtained, `CallAgent` can be used to initiate the Azure Communication Services call:
0 commit comments