ASDV-Android/Book Files/08_RecyclerView/CriminalIntent/build.gradle
2024-03-31 18:34:51 -05:00

28 lines
568 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
agp_version = '8.3.1'
}
repositories {
jcenter()
google()
}
dependencies {
classpath "com.android.tools.build:gradle:$agp_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}