2018-01-29 16:06:44 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
google()
|
2022-09-02 12:31:15 +00:00
|
|
|
mavenCentral()
|
2018-01-29 16:06:44 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2023-11-15 20:05:47 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:8.1.3'
|
2018-01-29 16:06:44 +00:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2022-09-02 12:31:15 +00:00
|
|
|
mavenCentral()
|
2018-01-29 16:06:44 +00:00
|
|
|
}
|
2020-10-05 19:11:50 +00:00
|
|
|
tasks.withType(JavaCompile) {
|
|
|
|
options.compilerArgs << "-Xlint:deprecation"
|
|
|
|
}
|
2018-01-29 16:06:44 +00:00
|
|
|
}
|