// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.kotlin_version = '1.9.0' ext { // UI components lottieVersion = '3.4.0' lifecycle = '2.7.0' koin = '2.1.6' // Images glide = '4.11.0' coil = '1.4.0'//0.9.5 } repositories { google() mavenCentral() //jcenter() } dependencies { classpath 'com.android.tools.build:gradle:7.4.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'com.google.gms:google-services:4.4.1' classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9' } } plugins { id 'com.google.devtools.ksp' version '1.9.0-1.0.11' apply false } allprojects { repositories { google() mavenCentral()//jcenter()// maven{url 'https://jitpack.io'} /* maven { name "linphone.org maven repository" url "https://linphone.org/maven_repository/" content { includeGroup "org.linphone" } }*/ } } task clean(type: Delete) { delete rootProject.buildDir }