37 lines
657 B
Groovy
Raw Normal View History

2013-10-11 15:18:06 +02:00
buildscript {
repositories {
mavenCentral()
}
dependencies {
2014-08-14 11:57:19 +02:00
classpath 'com.android.tools.build:gradle:0.12.+'
2013-10-11 15:18:06 +02:00
}
}
2014-08-14 11:57:19 +02:00
2013-10-11 15:18:06 +02:00
apply plugin: 'android'
repositories {
mavenCentral()
}
android {
2014-08-14 11:57:19 +02:00
compileSdkVersion 19
buildToolsVersion "19.1"
2013-10-11 15:18:06 +02:00
defaultConfig {
2014-08-14 11:57:19 +02:00
minSdkVersion 16
}
lintOptions {
abortOnError false
2013-10-11 15:18:06 +02:00
}
}
dependencies {
compile 'com.github.gabrielemariotti.changeloglib:library:1.2.0'
compile 'commons-io:commons-io:2.4'
2013-10-11 15:18:06 +02:00
compile 'com.android.support:support-v13:18.0.0'
compile ('de.greenrobot:eventbus:2.1.0-beta-1') {
exclude module: 'support-v4'
}
2013-10-11 15:18:06 +02:00
}