USER'S GUIDE SOURCE CODE SAMPLES CONTACT DONATE

Androjeta installation process is similar to the installation of Jeta. But here it’s recommended to use android-apt plugin by Hugo Visser as the plugin.

Here’s the complete listing:

buildscript {
    repositories {
        mavenCentral()
    }

    dependencies {
        classpath 'com.neenbedankt.gradle.plugins:android-apt:+'
    }
}

apply plugin: 'android-apt'

repositories {
    jcenter()
}

apt {
    arguments {
        jetaProperties "$project.projectDir/src/main/java/jeta.properties"
    }
}

dependencies {
    apt 'org.brooth.androjeta:androjeta-apt:2.3'
    compile 'org.brooth.androjeta:androjeta:2.3'
}

Go to the configuration guide to know about what are apt-arguments needed for.

How it works:

User's Guide:

Androjeta

Advanced

Stable version: 2.3
Available on Java 1.7+
Android Compatible
Fork me on GitHub