2018-10-29 21:49:42 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2019-04-26 17:23:26 +00:00
|
|
|
|
|
|
|
ext {
|
2024-03-05 15:08:18 +00:00
|
|
|
kotlin_version = '1.7.0'
|
2021-03-23 05:31:40 +00:00
|
|
|
nav_version = '2.3.4'
|
2019-04-26 17:23:26 +00:00
|
|
|
}
|
|
|
|
|
2018-10-29 21:49:42 +00:00
|
|
|
repositories {
|
|
|
|
google()
|
2021-03-02 06:26:37 +00:00
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://plugins.gradle.org/m2/' }
|
2018-10-29 21:49:42 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2022-05-29 18:34:24 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:7.2.1'
|
2018-10-29 21:49:42 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2019-04-12 01:43:58 +00:00
|
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
|
2022-05-29 18:34:24 +00:00
|
|
|
classpath 'com.google.gms:google-services:4.3.10'
|
|
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.5.2'
|
2018-10-29 21:49:42 +00:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2021-03-02 06:26:37 +00:00
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://plugins.gradle.org/m2/' }
|
2018-10-29 21:49:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|