2015-01-07 14:00:18 +01:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2021-04-30 12:21:49 +02:00
|
|
|
mavenCentral()
|
2017-11-11 00:55:05 +01:00
|
|
|
google()
|
2019-09-19 22:31:49 +02:00
|
|
|
maven {
|
|
|
|
url 'https://plugins.gradle.org/m2/'
|
|
|
|
}
|
2015-01-07 14:00:18 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2022-04-07 21:55:04 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:7.1.3'
|
2015-01-07 14:00:18 +01:00
|
|
|
|
2020-07-19 22:25:16 +02:00
|
|
|
classpath 'gradle.plugin.com.github.spotbugs:spotbugs-gradle-plugin:2.0.0'
|
2021-07-29 18:09:15 +02:00
|
|
|
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.17'
|
2015-01-07 14:00:18 +01:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2021-04-30 12:21:49 +02:00
|
|
|
mavenCentral()
|
2015-06-11 23:34:16 +02:00
|
|
|
maven {
|
2020-07-19 22:25:16 +02:00
|
|
|
url 'https://jitpack.io'
|
2015-06-11 23:34:16 +02:00
|
|
|
}
|
2017-11-14 11:01:29 +01:00
|
|
|
google()
|
2015-01-07 14:00:18 +01:00
|
|
|
}
|
|
|
|
}
|