Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beeradmoore/xam.plugin.linkedin.litr
https://github.com/beeradmoore/xam.plugin.linkedin.litr
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/beeradmoore/xam.plugin.linkedin.litr
- Owner: beeradmoore
- License: bsd-2-clause
- Created: 2021-05-05T02:13:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-26T04:09:46.000Z (almost 2 years ago)
- Last Synced: 2024-04-27T07:35:10.735Z (8 months ago)
- Language: C#
- Size: 5.8 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Xam.Plugin.LinkedIn.LiTr
Xamarin.Android bindings for [LinkedIn.LiTr](https://github.com/linkedin/LiTr) v1.5.5
## Installation
LiTr is available as two seperate nuget packages. Xam.Plugin.LinkedIn.LiTr is a binding for the [LiTr core library](https://github.com/linkedin/LiTr/tree/main/litr). Xam.Plugin.LinkedIn.LiTr.Filters is a binding which contains the additional [filters library](https://github.com/linkedin/LiTr/tree/main/litr-filters).
| Package | Current Version |
|-----------------|--------|
| [Xam.Plugin.LinkedIn.LiTr](https://www.nuget.org/packages/Xam.Plugin.LinkedIn.LiTr/) | [![NuGet](https://img.shields.io/nuget/vpre/Xam.Plugin.LinkedIn.LiTr.svg?label=NuGet)](https://www.nuget.org/packages/Xam.Plugin.LinkedIn.LiTr) |
| [Xam.Plugin.LinkedIn.LiTr.Filters](https://www.nuget.org/packages/Xam.Plugin.LinkedIn.LiTr.Filters/) | [![NuGet](https://img.shields.io/nuget/vpre/Xam.Plugin.LinkedIn.LiTr.Filters.svg?label=NuGet)](https://www.nuget.org/packages/Xam.Plugin.LinkedIn.LiTr.Filters) |## Usage
After you add the nuget package the examples listed over on the [LiTr](https://github.com/linkedin/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();
```## Build
### Building a .nupkg
1. Navigate to `Binding` directory and run BuildNugetPackage.sh
``` sh
$ cd Binding/
$ ./BuildNugetPackage.sh
```
2. Fetch your Xam.Plugin.LinkedIn.LiTr.x.y.z.nupkg and Xam.Plugin.LinkedIn.LiTr.Filters.x.y.z.nupkg from the Binding directory.## TODO
* Try figure out how to reduce the number of warnings.
* Improve example appPull requests welcome!