31 lines
509 B
Groovy
Raw Normal View History

2014-12-11 18:28:54 +01:00
buildscript {
repositories {
mavenCentral()
}
dependencies {
2014-12-11 18:58:22 +01:00
classpath 'com.android.tools.build:gradle:+'
2014-12-11 18:28:54 +01:00
}
}
apply plugin: 'com.android.library'
dependencies {
}
android {
compileSdkVersion 21
2014-12-11 18:58:22 +01:00
buildToolsVersion '21.1.2'
2014-12-11 18:28:54 +01:00
defaultConfig {
minSdkVersion 7
targetSdkVersion 21
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}