Pilldroid/build.gradle

43 lines
947 B
Groovy
Raw Normal View History

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
2021-11-20 10:44:25 +01:00
mavenCentral()
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 {
classpath 'com.android.tools.build:gradle:8.0.2'
// 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 {
2020-12-23 09:48:08 +01:00
compileSdkVersion = '28'
buildToolsVersion = '28.0.1'
2019-09-12 18:39:03 +02:00
var = '3.4.2'
2021-10-03 13:57:11 +02:00
//buildToolsVersion1 = '29.0.3'
2022-01-28 16:48:26 +01:00
defaultMinSdkVersion = 26
2021-04-09 20:32:43 +02:00
defaultTargetSdkVersion = 30
2020-05-11 20:49:29 +02:00
defaultVersionCode = 1
2017-12-11 15:24:50 +01:00
}
allprojects {
repositories {
2021-11-20 10:44:25 +01:00
mavenCentral()
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 {
}