Android

Integrate Pallet wallet through Deeplink.

<intent-filter >
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <!-- Accepts URIs that begin with "example://gizmos” -->
    <data android:scheme="palletdapp"
        android:host="wc" />
</intent-filter>

Step 2: Add Gradle Dependency

positories {
 ...
 maven { url 'https://jitpack.io' }
}

Add SDK dependencies from and find the last version.

dependencies {
 implementation 'com.github.bitbeen:PalletConnectKotlin:1.0.0'
}

Step 3: Integration in APP

1. Init WalletConnect

2. Connect wallet via WalletConnect

3. Personal Sign

4. Typed Sign

5. Send Transaction

Last updated