I am trying to implement finger touch login in my xamarin app
for that I have installed package Plugin. Fingerprint version 1.4.5.0
but it gives me an error while building
The primary reference "Plugin.Fingerprint, Version=1.4.5.0, Culture=neutral, processorArchitecture=MSIL" could not be resolved because it was built against the ".NETPortable,Version=v5.0" framework. This is a higher version than the currently targeted framework ".NETPortable,Version=v4.5,Profile=Profile111".
after searching for that error I got this solution
I've converted all projects in my Xamarin solution to netstandard1.1 (I used your guide) and now all works
but I m wondering it will not affect other feature of application? means this is the right solution? to degrade version like this will not affect any other things?
if yes what is the other solution to this error?
please help