31 lines
484 B
Groovy
Raw Normal View History

2014-09-25 14:19:23 +02:00
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.12.+'
}
}
apply plugin: 'com.android.library'
dependencies {
}
android {
2014-10-25 14:35:31 +02:00
compileSdkVersion 21
buildToolsVersion '21.0.2'
2014-09-25 14:19:23 +02:00
defaultConfig {
minSdkVersion 7
2014-10-25 14:35:31 +02:00
targetSdkVersion 21
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
2014-09-25 14:19:23 +02:00
}
}