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.
tasks/api/build.gradle

34 lines
566 B
Groovy

11 years ago
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.7.+'
11 years ago
}
}
apply plugin: 'android-library'
repositories {
mavenCentral()
}
android {
11 years ago
compileSdkVersion 19
buildToolsVersion "19.0.1"
11 years ago
11 years ago
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
11 years ago
defaultConfig {
minSdkVersion 7
targetSdkVersion 18
11 years ago
}
}
dependencies {
compile 'com.android.support:support-v4:18.0.0'
}