Skip to content

Commit 6d7a085

Browse files
2 parents a898374 + da270dc commit 6d7a085

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

build.gradle

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2+
3+
buildscript {
4+
5+
repositories {
6+
google()
7+
maven {url 'https://maven.google.com'}
8+
maven { url 'https://jitpack.io' }
9+
jcenter()
10+
mavenCentral()
11+
}
12+
dependencies {
13+
classpath 'com.android.tools.build:gradle:3.4.1'
14+
}
15+
}
16+
17+
allprojects {
18+
repositories {
19+
google()
20+
maven {url 'https://maven.google.com'}
21+
maven { url 'https://jitpack.io' }
22+
jcenter()
23+
mavenCentral()
24+
}
25+
}
26+
27+
task clean(type: Delete) {
28+
delete rootProject.buildDir
29+
}

0 commit comments

Comments
 (0)