blob: d0cd50e82c39a7a0708343707813e9bb79e1635c [file] [log] [blame]
Takeshi Hagikurab24be662015-02-27 23:59:54 +09001// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
3buildscript {
4 repositories {
Eric Gribkoff03737062018-01-30 12:16:30 -08005 google()
Chengyuan Zhangf33658a2021-04-22 15:59:36 -07006 mavenCentral()
Takeshi Hagikurab24be662015-02-27 23:59:54 +09007 }
8 dependencies {
Eric Andersone0dca932022-01-10 10:28:42 -08009 classpath 'com.android.tools.build:gradle:4.2.0'
Eric Andersoneb391fd2023-01-10 12:52:33 -080010 classpath "com.google.protobuf:protobuf-gradle-plugin:0.9.1"
Takeshi Hagikurab24be662015-02-27 23:59:54 +090011
12 // NOTE: Do not place your application dependencies here; they belong
13 // in the individual module build.gradle files
14 }
15}
16
17allprojects {
18 repositories {
Eric Gribkoff03737062018-01-30 12:16:30 -080019 google()
Chengyuan Zhang47301752020-08-07 16:59:47 +000020 mavenCentral()
Takeshi Hagikurab24be662015-02-27 23:59:54 +090021 mavenLocal()
22 }
23}
Xiao Hang239d6ea2016-07-25 14:59:43 -070024
ZHANG Dapeng5ce10f02018-06-11 18:35:18 -070025task clean(type: Delete) { delete rootProject.buildDir }