// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { google() mavenCentral() maven { url "https://jitpack.io" } jcenter() // Just for snatik and uploadservice } dependencies { classpath 'com.android.tools.build:gradle:7.4.2' classpath 'com.google.gms:google-services:4.3.15' classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.4' classpath 'org.ajoberstar.grgit:grgit-core:5.0.0' // Also change in app/gradle/grgit.gradle } } plugins { id("com.github.ben-manes.versions") version "0.46.0" } allprojects { repositories { google() mavenCentral() maven { url "https://jitpack.io" } jcenter() // Just for snatik and uploadservice } tasks.withType(JavaCompile) { options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" } } task clean(type: Delete) { delete rootProject.buildDir }