Nuget Packages with Native Libraries
This post is about creating a NuGet package which includes native libraries for Android. I am going to assume that you have a few things in place:
This post is about creating a NuGet package which includes native libraries for Android. I am going to assume that you have a few things in place:
TODO This is the end of this series for now. Let’s go over what should be next. So far, we have finished the following: Native C++ library for Windows ...
Xamarin Forms Application The new PCL library will now be used in a Xamarin Forms application. We will only be able to run it from android right now, but thi...
Xamarin Forms Library This library exposes the platform specific .NET libraries to Xamarin forms. We need several steps to do this.
Xamarin Android App We will create a Xamarin Android application to test the previous library.
Android .NET Library The first step to getting this library to work with Xamarin Forms will be a .NET library for every platform. We’ll start with Android.
UWP Application This application will allow us to test the Universal Windows libary.
.NET Universal Library In this part we will create another .NET library for Universal Windows Applications. This library can be used to create UWP applicatio...
WPF Application The managed library from the previous part can easily be tested in a WPF application.
.NET framework assembly In this part, we will create a .NET framework library. This library can be used from within a WPF application. It will only work on W...
Swig Now it is time to look at things from the C# side. We will use Swig to generate the wrapper code.
Android Native App To test the android library, we’ll add another application. Android Native Applications are running in an OpenGL loop. Without extra libra...
C++ Android Library So far we didn’t do anything crossplatformy, but that’s gonna change now. In this part, we will create a dynamic native library for Andro...
C++ Application So far, we got a Shared Items Project and a Windows DLL. In this part a console application will be added. This application offers the most d...
C++ Windows DLL We’ve got a Shared Items Project ready, but no actual library has been built so far. In this part we will add a Windows DLL in native C++. I...
C++ Library Code This is the first part of a series about crossplatform development with Visual Studio. A small C++ library will be created and ported to all...