Rox.Xamarin.Camera 1.0.0

There is a newer version of this package available.
See the version list below for details.

Requires NuGet 2.8.1 or higher.

dotnet add package Rox.Xamarin.Camera --version 1.0.0
                    
NuGet\Install-Package Rox.Xamarin.Camera -Version 1.0.0
                    
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="Rox.Xamarin.Camera" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rox.Xamarin.Camera" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Rox.Xamarin.Camera" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Rox.Xamarin.Camera --version 1.0.0
                    
#r "nuget: Rox.Xamarin.Camera, 1.0.0"
                    
#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.
#addin nuget:?package=Rox.Xamarin.Camera&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Rox.Xamarin.Camera&version=1.0.0
                    
Install as a Cake Tool

Acquire images with the device camera in Xamarin Forms with the CameraProvider component. Supports Android, iOS, and UWP.

The CameraProvider component uses native Camera components on each platform.
****************
In your iOS project "AppDelegate" code file, you must call "Rox.CameraIos.Init()" before "Xamarin.Forms.Forms.Init()". It should look something like:
----------------
Rox.CameraIos.Init();

global::Xamarin.Forms.Forms.Init();

LoadApplication(new MyCameraApplication());
****************
Sample Application is available at:
----------------
https://github.com/Rod-at-Rox/RoxXamarinCamera
****************
The CameraProvider component has the following methods:
- Task<ImageSource> AcquirePicture(); (Take a picture with the device camera)
****************

Product Compatible and additional computed target framework versions.
MonoAndroid monoandroid10 is compatible. 
Universal Windows Platform uap10 is compatible. 
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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.0.0-pre8 289 9/7/2021
5.0.0-pre7 303 8/21/2021
5.0.0-pre4 248 7/23/2021
1.1.0 3,058 10/18/2016
1.0.0 1,451 8/11/2016 1.0.0 is deprecated because it is no longer maintained.

[1.0.0]
- Added sample application to GIT
- Dependency on Xamarin Forms 2.0.0.0