gradle-androidannotations-plugin icon indicating copy to clipboard operation
gradle-androidannotations-plugin copied to clipboard

AndroidAnnotations plugin for Gradle

AndroidAnnotations plugin for Gradle

This plugin configures a Gradle project to add AndroidAnnotations to the build process.

Installation

buildscript {
    repositories {
        mavenCentral()
    }

    def gradleAndroidAnnotationsPluginVersion = '0.3.0'

    dependencies {
        classpath "net.ealden.gradle.plugins:gradle-androidannotations-plugin:$gradleAndroidAnnotationsPluginVersion"
    }
}

apply plugin: 'androidannotations'
apply plugin: 'idea'

androidAnnotationsVersion = '2.2'

Built on DEV@cloud