// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.kotlin_version = '1.6.10'//1.4.20//1.5.31 ext { // UI components lottieVersion = '3.4.0' lifecycle = '2.2.0' koin = '2.1.6'//2.0.1// // Images glide = '4.11.0' // piccasso = '2.71828' coil = '1.4.0'//0.9.5 } repositories { google() mavenCentral() //jcenter() } dependencies { classpath 'com.android.tools.build:gradle:7.0.4' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'com.google.gms:google-services:4.3.10'//4.3.5 // classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1'//2.5.2 // 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'} } } task clean(type: Delete) { delete rootProject.buildDir }