For the complete documentation index, see llms.txt. This page is also available as Markdown.

Plugin Installation

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

npm install uqudosdk-capacitor --save

Android

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

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.

Last updated

Was this helpful?