Xamarin.Android bindings for LinkedIn.LiTr v1.5.5
LiTr is available as two seperate nuget packages. Xam.Plugin.LinkedIn.LiTr is a binding for the LiTr core library. Xam.Plugin.LinkedIn.LiTr.Filters is a binding which contains the additional filters library.
Package | Current Version |
---|---|
Xam.Plugin.LinkedIn.LiTr | |
Xam.Plugin.LinkedIn.LiTr.Filters |
After you add the nuget package the examples listed over on the LiTr repository should work the same with the normal Xamarin.Android differences, eg:
MediaTransformer mediaTransformer = new MediaTransformer(getApplicationContext());
...
mediaTransformer.release();
would become
MediaTransformer mediaTransformer = new MediaTransformer(ApplicationContext);
...
mediaTransformer.Release();
- Navigate to
Binding
directory and run BuildNugetPackage.sh$ cd Binding/ $ ./BuildNugetPackage.sh
- Fetch your Xam.Plugin.LinkedIn.LiTr.x.y.z.nupkg and Xam.Plugin.LinkedIn.LiTr.Filters.x.y.z.nupkg from the Binding directory.
- Try figure out how to reduce the number of warnings.
- Improve example app
Pull requests welcome!