Skip to content

sr01/p2p.kotlin

Repository files navigation

p2p.kotlin

Peer-to-peer library written in Kotlin

Setup:

Gradle Dependency:

p2p.kotlin is available on jitpack.io.

Add this in your root build.gradle file (not your module build.gradle file):

allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}

Add this in your module build.gradle file:

dependencies {
    implementation 'com.github.sr01:p2p.kotlin:x.y.z'
}