Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

WalletConnect Auth - Kotlin

Kotlin implementation of WalletConnect Auth protocol for Android applications.

Maven Central

Requirements

  • Android min SDK 23
  • Java 11

Documentation and usage

 

Installation

root/build.gradle.kts:

allprojects {
 repositories {
    mavenCentral()
    maven { url "https://jitpack.io" }
 }
}

app/build.gradle.kts

implementation(platform("com.walletconnect:android-bom:{BOM version}"))
implementation("com.walletconnect:android-core")
implementation("com.walletconnect:auth")

 

Sample apps

  • For sample responder/wallet run responder module
  • For sample requester/Dapp run requester module