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
Last modified 9mo ago