File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ // Top-level build file where you can add configuration options common to all sub-projects/modules.
2
+
3
+ buildscript {
4
+ repositories {
5
+ google()
6
+ jcenter()
7
+ maven { url " https://maven.fabric.io/public" }
8
+ maven { url " https://jitpack.io" }
9
+ }
10
+ dependencies {
11
+ classpath ' com.android.tools.build:gradle:4.0.0'
12
+ classpath ' com.google.gms:google-services:4.3.0'
13
+ classpath ' io.fabric.tools:gradle:1.28.0'
14
+
15
+ // NOTE: Do not place your application dependencies here; they belong
16
+ // in the individual module build.gradle files
17
+ }
18
+ }
19
+
20
+ allprojects {
21
+ repositories {
22
+ google()
23
+ jcenter()
24
+ maven { url " https://jitpack.io" }
25
+ }
26
+ }
27
+
28
+ task clean (type : Delete ) {
29
+ delete rootProject. buildDir
30
+ }
You can’t perform that action at this time.
0 commit comments