47 lines
1.2 KiB
Groovy
47 lines
1.2 KiB
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.9.0'
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:7.4.2'
|
|
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.0'
|
|
classpath 'com.google.gms:google-services:4.4.2'
|
|
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.39.1'
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.7.1'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven {
|
|
url "https://github.com/jitsi/jitsi-maven-repository/raw/master/releases"
|
|
}
|
|
maven {
|
|
url "https://maven.google.com"
|
|
}
|
|
maven { url "https://jcenter.bintray.com"}
|
|
maven { url "https://www.jitpack.io" }
|
|
|
|
maven{
|
|
url "https://repo1.maven.org/maven2/"
|
|
}
|
|
|
|
maven {
|
|
url "https://repo.spring.io/libs-release/"
|
|
}
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|