Skip to content

Latest commit

 

History

History

web3modal

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

WalletConnect Web3Modal - Kotlin

Installation

:::caution The Web3Modal SDK is currently in Alpha and is not production-ready.

It's public API and associated documentation may still see significant and breaking changes. :::

Kotlin implementation of Web3Modal for Android applications.

Android Core Maven Central

Web3Modal Maven Central

Requirements

  • Android min SDK 23
  • Java 11

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:web3modal")