vn-warehouse/build.gradle

44 lines
1.1 KiB
Groovy
Raw Normal View History

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'
koin = '2.1.6'//2.0.1//
2020-05-04 11:15:24 +00:00
// Images
glide = '4.11.0'
// piccasso = '2.71828'
coil = '1.4.0'//0.9.5
2020-05-04 11:15:24 +00:00
}
repositories {
google()
mavenCentral() //jcenter()
2020-05-04 11:15:24 +00:00
}
dependencies {
2023-10-10 08:08:02 +00:00
classpath 'com.android.tools.build:gradle:7.0.4'
2020-05-04 11:15:24 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
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()
mavenCentral()//jcenter()//
maven{url 'https://jitpack.io'}
2020-05-04 11:15:24 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}