RetroMusicPlayer/build.gradle

30 lines
773 B
Groovy
Raw Normal View History

2018-07-27 18:37:33 +05:30
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2020-09-11 00:52:10 +05:30
ext.kotlin_version = '1.4.10'
2018-07-27 18:37:33 +05:30
repositories {
jcenter()
google()
}
dependencies {
2020-10-09 01:14:10 +05:30
classpath 'com.android.tools.build:gradle:4.0.2'
2018-12-13 02:57:37 +05:30
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2020-07-24 23:58:15 +05:30
def nav_version = "2.3.0"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
2020-10-06 14:36:16 +05:30
classpath "com.diffplug.spotless:spotless-plugin-gradle:4.5.1"
2018-07-27 18:37:33 +05:30
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
2020-10-06 14:16:04 +05:30
mavenCentral()
2018-07-27 18:37:33 +05:30
}
}
2020-10-06 14:16:04 +05:30
/*task clean(type: Delete) {
2018-07-27 18:37:33 +05:30
delete rootProject.buildDir
2020-10-06 14:16:04 +05:30
}*/