# 설치

## Installation

***

project level(root level) build.gradle file에 mavenCentral() 레포지토리를 추가:

```gradle
allprojects {
    repositories {
        mavenCentral()
    }
}
```

module level build.gradle file에 dependency를 추가:

#### build.gradle

```groovy
dependencies {
    implementation "io.github.FNCYchain:fncy-wallet-android-sdk:$latest_version"
}
```

#### build.gradle.kts

```kts
dependencies {
    implementation("io.github.FNCYchain:fncy-wallet-android-sdk:$latestVersion")
}
```

proguard-rules.pro 파일에 다음과 같은 옵션을 추가:

```
-keep,allowobfuscation,allowshrinking class kotlin.coroutines.Continuation
-keep class com.metaverse.world.wallet.sdk.model.** { *; }
-keep class com.metaverse.world.wallet.sdk.repository.network.** { *; }
```
