// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { google() mavenCentral() } dependencies { classpath("com.android.tools.build:gradle:7.0.4") classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31") classpath("org.jetbrains.kotlin:kotlin-android-extensions:1.5.31") classpath("org.jetbrains.kotlin:kotlin-serialization:1.5.31") classpath("com.google.gms:google-services:4.3.10") // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files classpath("com.google.firebase:firebase-crashlytics-gradle:2.8.1") classpath("com.google.firebase:perf-plugin:1.4.0") classpath("com.google.android.gms:oss-licenses-plugin:0.10.4") classpath("com.google.protobuf:protobuf-gradle-plugin:0.8.18") } } allprojects { repositories { google() mavenCentral() mavenLocal() maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots") } maven { url = uri("https://jitpack.io") } } } tasks.register("clean", Delete::class) { delete(rootProject.buildDir) }