Skip to content

A Gradle plugin to support the Groovy language for building Android apps

License

Notifications You must be signed in to change notification settings

Naitbit/groovy-android-gradle-plugin

 
 

Repository files navigation

Groovy language support for Android

Build Status

This plugin adds support for writing Android applications using the Groovy language.

Usage

Edit your build.gradle file with the following:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.1.2'
        classpath 'org.codehaus.groovy:groovy-android-gradle-plugin:1.0.0'
    }
}

apply plugin: 'groovyx.android'

Then you must choose which version and modules of Groovy you use. So far, Android support is available in the 2.4.0 release and beyond, so you need to add the following repository to your build.gradle file:

repositories {
   jcenter() // or mavenCentral()
}

Then you can start using Groovy by adding a dependency on the grooid classifier:

dependencies {
    compile 'org.codehaus.groovy:groovy:2.4.6:grooid'
}

then use the assembleDebug task to test.

Should you want to test development versions of the plugin, you can add the snapshot repository and depend on a SNAPSHOT:

buildscript {
    repositories {
        jcenter()
        maven {
            url = 'http://oss.jfrog.org/artifactory/oss-snapshot-local'
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.1.2'
        classpath 'org.codehaus.groovy:groovy-android-gradle-plugin:1.0.1-SNAPSHOT'
    }
}

Where to put sources?

Groovy sources may be placed in src/main/groovy, src/test/groovy, src/androidTest/groovy and any src/${buildVariant}/groovy configured by default. A default project will have the release and debug variants but these can be configured with build types and flavors. See the android plugin docs for more about configuring different build variants.

Extra groovy sources may be added in a similar fashion as the android plugin using the androidGroovy.sourceSets block. This is especially useful for sharing code between the different test types, and also allows you to add Groovy to a previous project. For example

androidGroovy {
  sourceSets {
    main {
      groovy {
        srcDirs += 'src/main/java'
      }
    }
  }
}

would add all of the Java files in src/main/java directory to the Groovy compile task. These files will be removed from the Java compile task, and will allow for the Java code to make references to the Groovy code (joint compilation). Please note, that you may need to also add these extra directories to the Java source sets in the android plugin for Android Studio to recognize the Groovy files as source.

Writing Groovy code

This plugin has been successfully tested with Android Studio and will make no attempts to add support for other IDEs. This plugin will let you write an application in Groovy but it is recommended, for performance, memory and battery life, that you use @CompileStatic wherever possible.

Details can be found on Melix's blog and here for more technical details

Including Groovy Libraries

In order to include groovy libraries that include the groovy or groovy-all jars, you will need to exclude the groovy jars allowing the grooid jar to be the one to be compiled against.

For example to use the groovy-xml library you would need to do

compile ('org.codehaus.groovy:groovy-xml:2.4.3') {
    exclude group: 'org.codehaus.groovy'
}

Configuring the Groovy compilation options

The Groovy compilation tasks can be configured in the androidGroovy block using the options block:

androidGroovy {
  options {
    configure(groovyOptions) {
      encoding = 'UTF-8'
      forkOptions.jvmArgs = ['-noverify'] // maybe necessary if you use Google Play Services
    }
    sourceCompatibility	= '1.7' // as of 0.3.9 these are automatically set based off the android plugin's
    targetCompatibility = '1.7'
  }
}

See GroovyCompile for more options. See Example Application for an example of using these settings to enable custom compilation options.

Only Use GroovyC

For integration with previous projects or for working with generated files (such as BuildConfig) it may be desirable to only have GroovyC run in order to have Java files reference Groovy files. In order to do this the flag skipJavaC in the androidGroovy block should be set to true.

androidGroovy {
  skipJavaC = true
}

This will remove all the files from the JavaC tasks and them all to GroovyC.

Annotation Processing

To use annotation processing javaAnnotationProcessing must be set to true in groovyOptions

androidGroovy {
  options {
    configure(groovyOptions) {
      javaAnnotationProcessing = true
    }
  }
}

Also note that skipJavaC must not be set to true. The java compilation process needs to run in order to trigger the annoation processors.

A useful but not required tool is android-apt which helps android studio pick up generated files so that auto-complete works correctly. Please note that this plugin must be added after the groovy android plugin.

For more examples of annotation processing setup see Example Dagger Application and Example Databinding Application

Data Binding

Databinding is actually annotation processing but hidden behind Android Studio and a Gradle plugin which sets up everything for you. Because of this you will need to use the android-apt plugin in order to see any of the generated output files. Regular Java projects to not need this since Android Studio knows where these are generated for Java source code.

The setup for Databinding and Annotation Processing are the same, so refer to the previous section in order to enable annoation processing.

Android packagingOptions

Groovy Extension Modules and Global transformations both need a file descriptor in order to work. Android packaging has a restriction related to files having the same name located in the same path.

If you are using several Groovy libraries containing extension modules or/and global transformations, Android may complain about those files.

You can simply add the following rule:

android {
  packagingOptions {
      exclude 'META-INF/services/org.codehaus.groovy.transform.ASTTransformation'
      exclude 'META-INF/services/org.codehaus.groovy.runtime.ExtensionModule'
  }
}

There is no problem excluding global transformation descriptors because those are only used at compile time, never at runtime.

The problem comes with module extensions. Unless you statically compile classes using extension modules with @CompileStatic they won't be available at runtime and you'll have a runtime exception.

There is an alternative. The emerger gradle plugin add those excludes for you and merges all extension module descriptors in a single file which will be available at runtime.

About

A Gradle plugin to support the Groovy language for building Android apps

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Groovy 100.0%