Simple-Dialer/build.gradle

29 lines
696 B
Groovy
Raw Normal View History

2020-05-06 21:38:19 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.9.0'
2020-05-06 21:38:19 +02:00
repositories {
google()
2023-06-22 23:57:08 +02:00
mavenCentral()
2020-05-06 21:38:19 +02:00
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.0'
2020-05-06 21:38:19 +02:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
2023-06-22 23:57:08 +02:00
mavenCentral()
2020-05-06 21:38:19 +02:00
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}