Android 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 Verisoul’s Android SDK and adds the required Maven repository in its Gradle file:
maven { url = uri("https://us-central1-maven.pkg.dev/verisoul/android") }If your app cannot resolve ai.verisoul:android, add that repository to your root Gradle repositories.
Permissions
Section titled “Permissions”The plugin manifest declares the required network permissions:
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /><uses-permission android:name="android.permission.INTERNET" />After installing the plugin, sync Android:
npx cap sync androidTouch signals
Section titled “Touch signals”Android exposes Verisoul touch-signal collection through recordTouchEvent():
import { Verisoul } from '@capgo/capacitor-verisoul';
await Verisoul.recordTouchEvent({ x: 120, y: 240, action: 'down',});Keep going from Android setup
Section titled “Keep going from Android setup”If you are using Android setup to configure Verisoul, connect it with Getting Started for app integration, iOS setup for iOS parity, and @capgo/capacitor-verisoul for the API overview.