Auth0.OidcClient.Android 2.4.3

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Auth0.OidcClient.Android --version 2.4.3
NuGet\Install-Package Auth0.OidcClient.Android -Version 2.4.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="Auth0.OidcClient.Android" Version="2.4.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Auth0.OidcClient.Android --version 2.4.3
#r "nuget: Auth0.OidcClient.Android, 2.4.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 Auth0.OidcClient.Android as a Cake Addin
#addin nuget:?package=Auth0.OidcClient.Android&version=2.4.3

// Install Auth0.OidcClient.Android as a Cake Tool
#tool nuget:?package=Auth0.OidcClient.Android&version=2.4.3

Auth0 OIDC Client for Xamarin Android apps

Product Compatible and additional computed target framework versions.
MonoAndroid monoandroid10 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
4.0.0 1,388 12/5/2023
3.5.0 2,912 9/20/2023
3.4.1 2,513 7/19/2023
3.4.0 399 7/13/2023
3.3.0 170 7/12/2023
3.2.7 30,743 2/14/2023
3.2.6 17,512 10/4/2022
3.2.5 6,320 7/26/2022
3.2.4 31,421 10/12/2021
3.2.3 953 9/16/2021
3.2.2 5,046 5/27/2021
3.2.1 22,178 5/4/2021
3.2.0 2,798 3/23/2021
3.1.3 55,128 2/29/2020
3.1.2 6,187 1/15/2020
3.1.1 4,308 12/3/2019
3.1.0 1,299 11/15/2019
3.0.1 2,285 11/3/2019
3.0.0 771 10/28/2019
2.4.3 17,224 9/30/2019
2.4.2 825 9/20/2019
2.4.1 8,703 7/19/2019
2.4.0 1,956 6/11/2019
2.3.1 14,729 1/15/2019
2.3.0 21,679 8/8/2018
2.2.0 1,001 8/1/2018
2.1.0 1,606 6/28/2018
2.0.0 2,614 5/23/2018
1.2.0 12,415 9/28/2017
1.1.0 2,024 8/7/2017
1.0.0 4,208 5/16/2017
1.0.0-beta3 1,303 5/8/2017
1.0.0-beta2 810 5/4/2017
1.0.0-beta1 810 4/17/2017

Version 2.4.3
     - Improved XML code documentation.
     - Update IdentityModel.OidcClient2 to 2.9.2
     - Update Xamarin.Android.Support.CustomTabs to 28.0.0.3
     
     Version 2.4.2
     - Fixes Auth0ClientOptions RedirectUri so it is actually honored.
     - Clarified RedirectUri and PostLogoutRedirectUri on Auth0ClientOptions in doc comments
     - Debug log now helpfully reports what Callback and Logout URLs to whitelist

     Version 2.4.1
     - Fixes "FLAG_ACTIVITY_NEW_TASK" error on Android SDK9 however you for best integration
     you should add 'Browser = new AutoSelectBrowser(this)` to your config creation from your view.
     - ChromeCustomTabs and SystemBrowser now take an optional View in the constructor.
       - If you pass a View then it will be used as the Context for launching the browser.
       - If you do not pass a View then the system context is used with the "NEW_TASK" flag.
       - While both work passing the View provides a better task switching experience.

     Version 2.4.0
     - Add support for ChromeCustomTabs browser and made it default
     - PlatformWebView class is deprecated. When it comes to config.Browser either:
     - Leave it null for ongoing best default (recommended)
     - Assign an instance of ChromeCustomTabBrowser (will fall back if needed)
     - Assign an instance of SystemBrowser (for old not-recommended behavior)
     - Add new Auth0ClientActivity class to help in wiring up ActivityMediator
     - Alternatively call ActivityMediator.Instance.Cancel() from your OnResume
     - Move system browser integration to SystemBrowser class
     - Add return code status for Logout (thanks @jsauve)
     - Add support to get the user claims from the userinfo endpoint (thanks @OrihuelaConde)
     - Add default for logout redirect
     - Update dependency on IdentityModel.OidcClient to v2.9.0
     - Update Android target to SDK 26/v8.0

     Version 2.3.1
     - Handle null-terminated POST bodies

     Version 2.3.0
     - Add support for federated logout

     Version 2.2.0
     - Add support to log the user out and clear the Auth0 SSO cookie

     Version 2.1.0
     - Fixed issue with browser not opening when running on Android 6.0
     - Updated dependency on IdentityModel.OidcClient to v2.7.0