# Plugin Installation

Run the following command inside your Capacitor project to install the latest version of the plugin:

```shell
npm install uqudosdk-capacitor --save
```

**Android**

Sync the project if using Android Studio and then add the following in the MainActivity extending BridgeActivity like:

```kotlin
public class MainActivity extends BridgeActivity {
   @Override
   public void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);

       registerPlugin(UqudoIdPlugin.class);
   }
}
```

**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).
