Simple-File-Manager/build.gradle

31 lines
698 B
Groovy
Raw Normal View History

2016-07-12 22:07:49 +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'
2016-07-12 22:07:49 +02:00
repositories {
google()
2023-06-23 10:50:38 +02:00
mavenCentral()
2016-07-12 22:07:49 +02:00
}
2016-07-12 22:07:49 +02:00
dependencies {
classpath 'com.android.tools.build:gradle:8.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2016-07-12 22:07:49 +02:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
2023-06-23 10:50:38 +02:00
mavenCentral()
maven { url "https://jitpack.io" }
2016-07-12 22:07:49 +02:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}