1.4 KiB
1.4 KiB
Linphone X UWP tutorial
Welcome to the C# tutorial, we are going to learn how to use the LinphoneSDK in the UWP (Universal Windows Platform) environment.
We recommend you to use Visual Studio 2019 to follow this tutorial.
First of all you can open the TutorialsCS solution in Visual Studio (TutorialsCS.sln) . Under the solution you will find several projects, each is a step from a hello world to a nearly full communication app using LinphoneSDK. Each step work and can be run independently, and in each step the new "Linphone" code is explained.
Don't forget to get a look at Liblinphone doc to see the complete list of available APIs.
You can find a readme file in each project, explaining the project goal and how to run and understand it.
- 00_HelloWorld : A simple "Hello World" with Linphone version number.
- 01_AccountLogin : Learn how to login to your SIP account.
- 02_IncomingCall : Receive calls.
- 03_OutgoingCall : Make your first calls.
- 04_BasicChat : Learn how to manage and send message in basic chat rooms.
- 05_FileTransfer : Send files in your previously created chat rooms.
- 06_GroupChat : Create and manage group chat rooms.
- 07_AdvancedChat : Secure chat rooms, ephemeral messages.