2020-05-04 11:15:24 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2023-06-16 14:34:56 +00:00
|
|
|
ext.kotlin_version = '1.8.0'//1.4.20//1.5.31
|
2020-05-04 11:15:24 +00:00
|
|
|
|
|
|
|
ext {
|
|
|
|
// UI components
|
|
|
|
lottieVersion = '3.4.0'
|
|
|
|
lifecycle = '2.2.0'
|
2021-10-22 08:58:14 +00:00
|
|
|
koin = '2.1.6'//2.0.1//
|
2020-05-04 11:15:24 +00:00
|
|
|
// Images
|
|
|
|
glide = '4.11.0'
|
2021-10-22 08:58:14 +00:00
|
|
|
// piccasso = '2.71828'
|
|
|
|
coil = '1.4.0'//0.9.5
|
2020-05-04 11:15:24 +00:00
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
google()
|
2021-10-22 08:58:14 +00:00
|
|
|
mavenCentral() //jcenter()
|
2020-05-04 11:15:24 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
dependencies {
|
2023-06-16 14:34:56 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:7.4.2'
|
2020-05-04 11:15:24 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2023-02-21 15:00:50 +00:00
|
|
|
classpath 'com.google.gms:google-services:4.3.10'
|
|
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1'
|
2020-05-04 11:15:24 +00:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2021-10-22 08:58:14 +00:00
|
|
|
mavenCentral()//jcenter()//
|
2021-07-05 05:49:54 +00:00
|
|
|
maven{url 'https://jitpack.io'}
|
2020-05-04 11:15:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|
2021-07-05 14:32:43 +00:00
|
|
|
|