Skip to content
This repository was archived by the owner on May 25, 2022. It is now read-only.

Dependencies (Gradle)

Jakob K edited this page Jan 10, 2021 · 4 revisions

Add dependency

Add the following repository:

repositories {
    jcenter()
}

Now add the dependencies you need:

dependencies {
    // you will always need the following dependency:
    implementation("net.axay:simplekotlinmail-core:1.0.0")

    // if you want to send emails:
    implementation("net.axay:simplekotlinmail-client:1.0.0")
    // if you want to receive emails:
    implementation("net.axay:simplekotlinmail-server:1.0.0")
}

Clone this wiki locally