Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 982 Bytes

README.md

File metadata and controls

39 lines (26 loc) · 982 Bytes

Andrill - Android Mandrill API

A library used for sending emails from Android using Mandrill. It is a fork of Lutung - a Java interface to the Mandrill API, optimized for using in Android.

Installation

For Gradle:

repositories {
    maven {
        url "https://jitpack.io"
    }
}

dependencies {
    compile 'com.github.farhanali:andrill:v1.0.0'
}

For Maven:

<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>

<dependency>
    <groupId>com.github.farhanali</groupId>
    <artifactId>andrill</artifactId>
    <version>v1.0.0</version>
</dependency>

References