Files
linphone-tutorials/uwp/cs/Readme.md
Thibault Lemaire aca479888a Give the UWP Tutorial a little refresher
In order to write an equivalent tutorial for Xamarin, I am first
following the UWP tutorial.

Fixed many little spelling mistakes and rephrased some sentences.

Fixed a crash when video is requested but the device has no camera.

Fixed a crash when opening an audio recording. (Linphone.Content.FilePath
returns a path with mixed '/' and '\'. I don't know why and I'm not sure
I understand why the file was auto-downloaded either)
2022-02-17 16:10:10 +01:00

2.1 KiB
Raw Permalink Blame History

Linphone X UWP tutorial

Welcome to the C# tutorial, we are going to learn how to use the Linphone SDK in a UWP (Universal Windows Platform) environment.

We recommend you use Visual Studio 2019 to follow this tutorial.

Prerequisite: Installing the LinphoneSDK NuGet package

Before you start and if you haven't done so already, you should download and install the LinphoneSDK NuGet package.

  1. Choose a local folder (e.g. Downloads) and set it as a NuGet source. This will be where you put the downloaded .nupkg files. In Visual Studio: Tools > NuGet Package Manager > Package Manager Settings > Package Sources > > Source: ...
  2. Download LinphoneSDK.5.1.0.nupkg from https://www.linphone.org/snapshots/windows/sdk/ to the folder you chose above.
  3. Open the TutorialsCS solution in Visual Studio (TutorialsCS.sln).
  4. Right-click on the TutorialsCS solution and 'Restore NuGet Packages'.

Getting Started

Inside the TutorialsCS solution, you will find several projects, each of which is a step from a hello world to a nearly full-featured communication app using the Linphone SDK. Each step builds upon the previous ones but is standalone and can be run on its own. At each step, only new Linphone-related code is explained.

You will find additional Readme files in each project for further details.

To complement this tutorial and to get the complete list of available APIs, take a look at the Liblinphone documentation.