25 lines
346 B
Groovy
25 lines
346 B
Groovy
|
buildscript {
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath 'com.android.tools.build:gradle:0.5.+'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply plugin: 'android-library'
|
||
|
|
||
|
dependencies {
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 17
|
||
|
buildToolsVersion "19.1.0"
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion 7
|
||
|
targetSdkVersion 17
|
||
|
}
|
||
|
}
|
||
|
|