iOS setup
Copy a setup prompt with the install steps and the full markdown guide for this plugin.
Native SDK
Section titled โNative SDKโThe plugin depends on VerisoulSDK and supports both CocoaPods and Swift Package Manager through the plugin package metadata.
After installing the plugin, sync the native project:
npx cap sync iosApp Attest
Section titled โApp AttestโVerisoul recommends enabling App Attest for stronger device checks. In Xcode, add the App Attest capability and include the entitlement value that matches your environment:
<key>com.apple.developer.devicecheck.appattest-environment</key><string>production</string>Use development for test builds.
Initialize Verisoul early in your app lifecycle:
import { Verisoul } from '@capgo/capacitor-verisoul';
await Verisoul.configure({ environment: 'prod', projectId: 'YOUR_PROJECT_ID',});Keep going from iOS setup
Section titled โKeep going from iOS setupโIf you are using iOS setup to configure Verisoul, connect it with Getting Started for app integration, Android setup for Android parity, and @capgo/capacitor-verisoul for the API overview.