// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { val kotlinVersion by extra("1.5.30") repositories { google() mavenCentral() } dependencies { classpath("com.android.tools.build:gradle:7.0.2") classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion") classpath("com.google.gms:google-services:4.3.10") classpath("com.google.firebase:perf-plugin:1.4.0") classpath("com.google.firebase:firebase-crashlytics-gradle:2.7.1") classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.4.0-alpha10") // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle.kts files } } allprojects { repositories { google() mavenCentral() maven(url = "https://jitpack.io") } } task("clean") { delete(rootProject.buildDir) }