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-09-27 15:20:05 +02:00
|
|
|
compileSdkVersion 19
|
|
|
|
buildToolsVersion '19.1.0'
|
2014-09-25 14:19:23 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 7
|
2014-10-12 18:11:19 +02:00
|
|
|
targetSdkVersion 19
|
2014-09-25 14:19:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|