Simple-File-Manager/build.gradle

31 lines
689 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.7.10'
2016-07-12 22:07:49 +02:00
repositories {
google()
jcenter()
2016-07-12 22:07:49 +02:00
}
2016-07-12 22:07:49 +02:00
dependencies {
2022-10-10 17:14:54 +02:00
classpath 'com.android.tools.build:gradle:7.3.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()
jcenter()
maven { url "https://jitpack.io" }
2016-07-12 22:07:49 +02:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}