VoxeetXamarinConferencekit.iOS 0.0.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package VoxeetXamarinConferencekit.iOS --version 0.0.3
NuGet\Install-Package VoxeetXamarinConferencekit.iOS -Version 0.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="VoxeetXamarinConferencekit.iOS" Version="0.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add VoxeetXamarinConferencekit.iOS --version 0.0.3
#r "nuget: VoxeetXamarinConferencekit.iOS, 0.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install VoxeetXamarinConferencekit.iOS as a Cake Addin
#addin nuget:?package=VoxeetXamarinConferencekit.iOS&version=0.0.3

// Install VoxeetXamarinConferencekit.iOS as a Cake Tool
#tool nuget:?package=VoxeetXamarinConferencekit.iOS&version=0.0.3

VoxeetXamarinConferencekit.iOS

This plugin is binding the Voxeet's Toolkit/ConferenceKit calls for Xamarin.iOS.

Installation

iOS

Apple requires your App to be sent with a SwiftSupport folder alongside your Payload folder. Both are inside your IPA package.

You can use this script https://github.com/bq/ipa-packager to do this work for you.

  1. Archive your app for Publishing.
  2. When the Archives window pops up, go to it in Finder (right click on it and select "Reveal in Finder").
  3. When Finder appears, we need to access the archive's content (right click and select "Show Package Contents").
  4. Inside of the archive package, create a folder called "SwiftSupport".
  5. Inside of the package navigate to "Product/Applications/YourAppName.app/Frameworks" (You will need to right click on the .app and select "Show Package Contents").
  6. Copy all the swift ".dylib" files inside of the Frameworks directory.
  7. Navigate back to "SwiftSupport" and paste those copied libraries.
  8. Now Launch Xcode and load Organizer (Window → Organizer).
  9. Find your app in the Archives and "Upload to App Store...".

You can use this script https://github.com/bq/ipa-packager to do this work for you.

Implementation

Import

using VoxeetXamarinConferencekit.iOS;

Init

VoxeetConferenceKit.Shared.Initialize("<your consumer key>", "<your secret key>");

Session opening

    VTUser user = new VTUser("userId", "userName", "photoUrl");
    VoxeetConferenceKit.Shared.OpenSession(user, OnComplete);

Start/Stop a conference

You can start a conference with its conferenceId. You can also invite others to join the current conference by using an array of VTUser


    VTUser[] users = new VTUser[] {
        new VTUser("userId1", "userName1", "userPictureUrl1"),
        new VTUser("userId2", "userName2", "userPictureUrl2"),
        new VTUser("userId3", "userName3", "userPictureUrl3"),
    };

    VoxeetConferenceKit.Shared.StartConference("1234", users, true, OnSuccess, OnFailure);

You can also stop a given conference using the following method which will close the conference.

    VoxeetConferenceKit.Shared.StopConference(OnComplete));

Stop the session


    VoxeetConferenceKit.Shared.CloseSession(OnComplete);

License

This code-source is under the GPL-v3 License

Product Compatible and additional computed target framework versions.
Xamarin.iOS xamarinios10 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on VoxeetXamarinConferencekit.iOS:

Package Downloads
VoxeetXamarinConferencekit.Forms

Bringing Voxeet's Conferenkit to Xamarin.Forms

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.7 1,238 11/1/2018
0.0.5 1,010 9/26/2018
0.0.4 1,052 9/24/2018
0.0.3 880 9/20/2018