> For the complete documentation index, see [llms.txt](https://docs.uqudo.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.uqudo.com/docs/kyc/uqudo-sdk/integration/capacitor/plugin-installation.md).

# 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](/docs/kyc/uqudo-sdk/integration/ios/prepare-environment.md#xcode-environment-setup-for-ios).
