Home > Mobile >  Auth0 NuGet packages for Xamarin Forms 5.0
Auth0 NuGet packages for Xamarin Forms 5.0

Time:02-17

I'm building a new Xamarin mobile app using Xamarin Forms 5.0 and tried to install Auth0.OidcClient.iOS and Auth0.OidcClient.Android as suggested by the instructions on Auth0 website here: enter image description here

What packages am I supposed to use with a new Xamarin Forms app?

P.S. I'm on Visual Studio 2022 17.1.0 and the app is a Xamarin Forms app with the following version numbers in the project file:

<PackageReference Include="Xamarin.Forms" Version="5.0.0.2196" />  
<PackageReference Include="Xamarin.Essentials" Version="1.7.0" />

CodePudding user response:

as the name suggests Auth0.OidcClient.iOS should be installed in your iOS project and Auth0.OidcClient.Android should be installed in your Android project. You are apparently trying to install them in the shared Forms project

  • Related