Reputation: 25
I'm trying to install Google Play Services - Maps in a Xamarin Android project, it is shown in the list of Components in the PC, but when i add it to the project (even through "Add to project" in component list or trying to redownload it) it just shout out
"Some required packages are not referenced by this project".
This is an image of the output, turns out than happend with every single component, it just re-download, show the percentage thing and then output what it is in the image.
https://i.sstatic.net/4ErvC.jpg
i already try:
PS: If you know where i can find windows support for this one, please show me, i know SO is better, but i wanna leave a little comment there too...
Upvotes: 0
Views: 220
Reputation: 13176
There's really no need to use the Component Store
when these packages exist in NuGet
. When you try to install this package from NuGet
, you should get a more detailed error. My best guess would be that you need to ensure you have set your <TargetFrameworkVersion>
to the minimum for this latest stable package which is 7.0
.
Upvotes: 0