1// Top-level build file where you can add configuration options common to all sub-projects/modules. 2 3buildscript { 4 repositories { 5 mavenCentral() 6 maven { 7 url 'https://maven.google.com/' 8 name 'Google' 9 } 10 } 11 12 dependencies { 13 classpath 'com.android.tools.build:gradle:7.2.1' 14 } 15} 16 17allprojects { 18 repositories { 19 mavenCentral() 20 maven { 21 url 'https://maven.google.com/' 22 name 'Google' 23 } 24 } 25} 26 27task clean(type: Delete) { 28 delete rootProject.buildDir 29} 30