// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { mavenCentral() maven { url 'https://plugins.gradle.org/m2/' } maven { url 'https://maven.google.com' } google() } dependencies { classpath 'com.android.tools.build:gradle:7.4.2' } } allprojects { repositories { mavenCentral() google() maven { url 'https://jitpack.io' } } } task clean(type: Delete) { delete rootProject.buildDir }