Simple-Music-Player/build.gradle

32 lines
712 B
Groovy
Raw Normal View History

2016-01-10 12:26:04 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2022-05-27 18:26:38 +00:00
ext.kotlin_version = '1.6.21'
2017-11-29 23:01:54 +00:00
2016-01-10 12:26:04 +00:00
repositories {
2017-11-29 23:01:54 +00:00
google()
jcenter()
2016-01-10 12:26:04 +00:00
}
2017-11-29 23:01:54 +00:00
2016-01-10 12:26:04 +00:00
dependencies {
2022-05-27 18:26:38 +00:00
classpath 'com.android.tools.build:gradle:7.1.3'
2017-11-29 23:01:54 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2016-01-10 12:26:04 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
2017-11-29 23:01:54 +00:00
google()
mavenCentral()
jcenter()
2017-11-04 12:02:35 +00:00
maven { url "https://jitpack.io" }
2016-01-10 12:26:04 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}