mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-09 05:24:44 +01:00
35 lines
723 B
Groovy
35 lines
723 B
Groovy
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||
|
|
||
|
buildscript {
|
||
|
repositories {
|
||
|
jcenter()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath 'com.android.tools.build:gradle:1.3.0'
|
||
|
|
||
|
// NOTE: Do not place your application dependencies here; they belong
|
||
|
// in the individual module build.gradle files
|
||
|
}
|
||
|
}
|
||
|
|
||
|
allprojects {
|
||
|
repositories {
|
||
|
jcenter()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
task clean(type: Delete) {
|
||
|
delete rootProject.buildDir
|
||
|
}
|
||
|
|
||
|
subprojects {
|
||
|
afterEvaluate {project ->
|
||
|
if (project.hasProperty("android")) {
|
||
|
android {
|
||
|
compileSdkVersion 14
|
||
|
buildToolsVersion '22.0.1'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|