NSouth
NSouth

Reputation: 5276

"Prism.Unity 6.3.0 is not compatible with monoandroid81"

I am trying to add Prism to my Xamarin Forms app. Following this video by Brian Lagunas, I am attempting to add Prism.Unity to all of my projects (.NET Standard, Droid, iOS, and UWP). However, I am getting these errors. Does the latest version of Prism.Unity not support the latest versions for Android and iOS?

NU1202: Package Prism.Unity 6.3.0 is not compatible with xamarinios10
(Xamarin.iOS,Version=v1.0). Package Prism.Unity 6.3.0 supports:
- net45 (.NETFramework,Version=v4.5)
- uap10.0 (UAP,Version=v10.0) NU1202: Package Prism.Unity 6.3.0 is not
compatible with xamarinios10 (Xamarin.iOS,Version=v1.0) / win.
Package Prism.Unity 6.3.0 supports:
- net45 (.NETFramework,Version=v4.5)
- uap10.0 (UAP,Version=v10.0) NU1202: Package Prism.Unity 6.3.0 is not compatible with xamarinios10 (Xamarin.iOS,Version=v1.0) / win-x64.
Package Prism.Unity 6.3.0 supports:
- net45 (.NETFramework,Version=v4.5)
- uap10.0 (UAP,Version=v10.0) NU1202: Package Prism.Unity 6.3.0 is not compatible with xamarinios10 (Xamarin.iOS,Version=v1.0) / win-x86.
Package Prism.Unity 6.3.0 supports:
- net45 (.NETFramework,Version=v4.5)
- uap10.0 (UAP,Version=v10.0)

NU1202: Package Prism.Unity 6.3.0 is not compatible with monoandroid81
(MonoAndroid,Version=v8.1). Package Prism.Unity 6.3.0 supports:
- net45 (.NETFramework,Version=v4.5)
- uap10.0 (UAP,Version=v10.0)

I would appreciate any help! Thanks.

Upvotes: 0

Views: 665

Answers (1)

Dan Siegel
Dan Siegel

Reputation: 5799

First of all the latest version of Prism for Xamarin Forms is 7.0 and there is a 7.1 preview. Prism 7 was updated for netstandard support and has a large number of changes that make developing apps a lot easier. Here are some blog articles to help you with Prism 7

Second you're installing the wrong package. You need to install one of the following:

You can read more on the supported containers in this StackOverflow thread.

Upvotes: 1

Related Questions