I want to use Azure Redis cache in my Android app and I need to add StackExchange.Redis nuget package first, according to the instructions here: https://azure.microsoft.com/en-us/documentation/articles/cache-dotnet-how-to-use-azure-redis-cache
However, when I do this, I get the following error message in package manager console:
Install failed. Rolling back... Install-Package : Could not install package 'StackExchange.Redis 1.0.488'. You are trying to install this package into a project that targets 'MonoAndroid,Version=v4.4', but the packag e does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author. At line:1 char:16 + Install-Package <<<< StackExchange.Redis + CategoryInfo : NotSpecified: (:) [Install-Package], InvalidOperationException + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPackageCommand
What could be the reason for this? Is the nuget package I am trying to add noncompatible with MonoAndroid?