Skip to content

Instantly share code, notes, and snippets.

@pjakubczyk
Created September 15, 2015 08:00
Show Gist options
  • Save pjakubczyk/13088e9f29d628ffb8f2 to your computer and use it in GitHub Desktop.
Save pjakubczyk/13088e9f29d628ffb8f2 to your computer and use it in GitHub Desktop.
Groovy for Android latest plugin
// check gradle.properties and build.gradle for common configurations
buildscript {
repositories {
jcenter()
maven {
url "https://jitpack.io"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'
// classpath 'org.codehaus.groovy:gradle-groovy-android-plugin:0.3.6'
classpath 'com.github.groovy:groovy-android-gradle-plugin:570c650ee00622120ad0d0653f8329b64321f37d'
}
}
repositories {
maven {
url "https://jitpack.io"
}
}
apply plugin: 'com.android.library'
apply plugin: 'groovyx.grooid.groovy-android'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment