Pilldroid/build.gradle

38 lines
810 B
Groovy
Raw Normal View History

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
2017-12-11 15:24:50 +01:00
maven {
url 'https://maven.google.com/'
name 'Google'
}
2018-09-27 19:16:52 +02:00
google()
}
dependencies {
2019-10-09 21:00:10 +02:00
classpath 'com.android.tools.build:gradle:3.5.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
2017-12-11 15:24:50 +01:00
ext {
2018-09-27 19:16:52 +02:00
compileSdkVersion = '27'
2017-12-11 15:24:50 +01:00
buildToolsVersion = '27.0.1'
2019-09-12 18:39:03 +02:00
var = '3.4.2'
2017-12-11 15:24:50 +01:00
}
allprojects {
repositories {
jcenter()
2017-12-11 15:24:50 +01:00
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
2017-12-11 15:24:50 +01:00
dependencies {
}