Skip to content

Instantly share code, notes, and snippets.

@umetsu
Last active August 29, 2015 14:03
Show Gist options
  • Save umetsu/9fa2dbfab6e0402d4cb9 to your computer and use it in GitHub Desktop.
Save umetsu/9fa2dbfab6e0402d4cb9 to your computer and use it in GitHub Desktop.
apply plugin: 'com.android.application'
android {
compileSdkVersion 20
buildToolsVersion "20.0.0"
defaultConfig {
applicationId "com.example.groovyonandroidsample.app"
minSdkVersion 8
targetSdkVersion 20
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:20.+'
compile 'org.codehaus.groovy:groovy:2.4.0-beta-1:grooid'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment