mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
743 B
Groovy
39 lines
743 B
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:0.8.+'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'android-library'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
android {
|
|
lintOptions {
|
|
lintConfig file("../lint.xml")
|
|
}
|
|
compileSdkVersion 19
|
|
buildToolsVersion "19.0.1"
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
}
|
|
|
|
defaultConfig {
|
|
minSdkVersion 7
|
|
targetSdkVersion 18
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile group: 'com.android.support', name: 'support-v4', version: '19.0.+'
|
|
|
|
compile group: 'joda-time', name: 'joda-time', version: '2.3', transitive: false
|
|
}
|