0

I try to use CloudRail with Xamarin.Forms but when I install the 'CloudRail.SDK' nuget package I get the following errors:

NU1202: Package CloudRail.SDK 1.0.3 is not compatible with xamarinios10 (Xamarin.iOS,Version=v1.0). Package CloudRail.SDK 1.0.3 supports: net (.NETFramework,Version=v0.0)
NU1202: Package CloudRail.SDK 1.0.3 is not compatible with xamarinios10 (Xamarin.iOS,Version=v1.0) / win. Package CloudRail.SDK 1.0.3 supports: net (.NETFramework,Version=v0.0)
NU1202: Package CloudRail.SDK 1.0.3 is not compatible with xamarinios10 (Xamarin.iOS,Version=v1.0) / win-x64. Package CloudRail.SDK 1.0.3 supports: net (.NETFramework,Version=v0.0)
NU1202: Package CloudRail.SDK 1.0.3 is not compatible with xamarinios10 (Xamarin.iOS,Version=v1.0) / win-x86. Package CloudRail.SDK 1.0.3 supports: net (.NETFramework,Version=v0.0)
NU1202: Package CloudRail.SDK 1.0.3 is not compatible with monoandroid81 (MonoAndroid,Version=v8.1). Package CloudRail.SDK 1.0.3 supports: net (.NETFramework,Version=v0.0)

Is there a way to setup CloudRail (for social login) with Xamarin.Forms?

Aymeric
  • 199
  • 12
  • 1
    they offer packages specifically form Xamarin iOS and Xamarin Android, but not Xamarin Forms. You will need to install the packages in your individual platform projects, and then use DI (or some other mechanism) to call them from shared code – Jason Jul 06 '18 at 14:50
  • 1
    Jason is right, but you might be able to put the common code in shared source project so it just uses the packages from platform specific builds. – Curtis Shipley Jul 06 '18 at 15:20

1 Answers1

0

Use Xamarin.CloudRail.iOS and Xamarin.CloudRail.Android instead of Cloudrail.SDK.

Muj
  • 26
  • 3