# Plugin Installation

In order to install the uqudo package you need to add our NuGet repository. Open preferences under “Visual Studio” -> “Preferences” -> “NuGet” -> “Sources” and click the add button. Insert the name “uqudo” and the location url “<https://rm.dev.uqudo.io/repository/nuget-hosted/>”. No authentication is required.

<figure><img src="https://1201843429-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0JZZSvL3DmX19a9SgDAt%2Fuploads%2FX4YfBYzfWbM0NU55icWt%2Fxamarin.png?alt=media&#x26;token=f764e3fd-55ae-45ef-bb3a-d05ec7e47ec0" alt=""><figcaption></figcaption></figure>

**Note:** Please note that there might be a bug in the Mac version where the repository added above doesn’t get reflected in the configuration file below:

```
~/.config/NuGet/NuGet.Config
```

In case you don’t have the repository added please make sure to add it manually as per the example below:

```xml
<?xml version="1.0" encoding="utf-8"?>
<configuration>
 <packageSources>
   <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
   <add key="uqudo" value="https://rm.dev.uqudo.io/repository/nuget-hosted/" protocolVersion="3" />
 </packageSources>
</configuration>
```

**Android**

Install the Uqudo SDK package:

1. Open NuGet Package manager
2. Select the package source “uqudo” or search for uqudo
3. For **Xamarin**: \
   Install the package **UqudoSDK.Android.Binding**\
   For **.NET**: \
   Install the package **UqudoSDK.DotNet.Android**

**Note**: In your `.csproj` file, within the `<PropertyGroup>` tag, add the following line to suppress specific warnings:

```markup
<PropertyGroup>
    <NoWarn>NU1605</NoWarn>
</PropertyGroup>
```

**iOS**

Please follow the steps described in [Xcode Environment Setup](https://docs.uqudo.com/docs/kyc/uqudo-sdk/ios/prepare-environment#xcode-environment-setup-for-ios) for iOS specifically for the Info.plist configuration, NFC capability if required and the uqudo plist configuration files. The same needs to be configured in your Visual Studio for your iOS project.

Install the Uqudo SDK package:

1. Open NuGet Package manager
2. Select the package source “uqudo” or search for uqudo
3. For **Xamarin**: \
   Install the packages **UqudoSDK.iOS.Binding** and **UqudoSDK.OpenSSL.Binding**\
   For **.NET**:\
   Install the packages **UqudoSDK.DotNet.iOS** and **UqudoSDK.DotNet.OpenSSL**

**Notes**:&#x20;

1- Ensure your project uses Xamarin.iOS version 15.4.0.0 or above.\
2- Ensure your project uses .NET8 or above.
