Mabasej_Team/app/WikiSpot/build.gradle

30 lines
796 B
Groovy
Raw Normal View History

2021-03-16 20:03:36 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.4.31"
repositories {
google()
jcenter()
2021-03-31 19:23:37 +02:00
mavenCentral()
2021-03-16 20:03:36 +01:00
}
dependencies {
2021-04-13 09:53:32 +02:00
classpath 'com.android.tools.build:gradle:4.1.3'
2021-03-16 20:03:36 +01:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2021-04-13 09:53:32 +02:00
def nav_version = "2.3.0-alpha04"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
2021-03-16 20:03:36 +01:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}