Pilldroid/build.gradle

39 lines
857 B
Groovy
Raw Permalink 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 {
2024-09-03 12:39:10 +02:00
classpath 'com.android.tools.build:gradle:8.6.0'
// 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'
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'
}
}
}
2024-03-26 21:20:53 +01:00
tasks.register('clean', Delete) {
2024-09-03 12:39:10 +02:00
delete rootProject
}
2017-12-11 15:24:50 +01:00
dependencies {}