2016-08-15 21:29:41 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2021-07-22 21:43:51 +02:00
|
|
|
mavenCentral()
|
2017-12-12 01:50:00 +01:00
|
|
|
google()
|
2016-08-15 21:29:41 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2021-10-19 23:09:54 -07:00
|
|
|
classpath 'com.android.tools.build:gradle:7.0.3'
|
2021-07-22 21:17:04 +02:00
|
|
|
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.17'
|
2016-08-15 21:29:41 +02:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2021-07-22 21:43:51 +02:00
|
|
|
mavenCentral()
|
2017-12-12 01:50:00 +01:00
|
|
|
google()
|
2017-08-13 19:51:54 +02:00
|
|
|
maven { url 'https://jitpack.io' }
|
2021-07-22 21:43:51 +02:00
|
|
|
jcenter()
|
2016-08-15 21:29:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|