Skip to content

Commit a75ab69

Browse files
authored
Merge pull request #8 from reedniv/patch-1
Create build.gradle
2 parents 8418c2c + c85d673 commit a75ab69

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

build.gradle

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2+
3+
buildscript {
4+
repositories {
5+
jcenter()
6+
maven {
7+
url "https://maven.google.com"
8+
}
9+
google()
10+
}
11+
dependencies {
12+
classpath 'com.android.tools.build:gradle:3.5.3'
13+
14+
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
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+
jcenter()
23+
maven {
24+
url "https://maven.google.com"
25+
}
26+
google()
27+
}
28+
}
29+
30+
task clean(type: Delete) {
31+
delete rootProject.buildDir
32+
}

0 commit comments

Comments
 (0)