aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorpacien2018-02-10 14:16:15 +0100
committerpacien2018-02-10 14:16:15 +0100
commit87ec3620d2259064831356c2f4000ae591756fd2 (patch)
tree9312da1d357fdd3790d5b80af221653696b23089 /build.gradle
parentd1c39ba87bb32308c2d3a7a749abffeb773541ef (diff)
downloadtincapp-87ec3620d2259064831356c2f4000ae591756fd2.tar.gz
Reformat code
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle28
1 files changed, 14 insertions, 14 deletions
diff --git a/build.gradle b/build.gradle
index 624c988..843af8b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,25 +1,25 @@
1// Top-level build file where you can add configuration options common to all sub-projects/modules. 1// Top-level build file where you can add configuration options common to all sub-projects/modules.
2 2
3buildscript { 3buildscript {
4 ext.kotlin_version = '1.2.21' 4 ext.kotlin_version = '1.2.21'
5 repositories { 5 repositories {
6 jcenter() 6 jcenter()
7 } 7 }
8 dependencies { 8 dependencies {
9 classpath 'com.android.tools.build:gradle:3.0.1' 9 classpath 'com.android.tools.build:gradle:3.0.1'
10 classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 10 classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11 11
12 // NOTE: Do not place your application dependencies here; they belong 12 // NOTE: Do not place your application dependencies here; they belong
13 // in the individual module build.gradle files 13 // in the individual module build.gradle files
14 } 14 }
15} 15}
16 16
17allprojects { 17allprojects {
18 repositories { 18 repositories {
19 jcenter() 19 jcenter()
20 } 20 }
21} 21}
22 22
23task clean(type: Delete) { 23task clean(type: Delete) {
24 delete rootProject.buildDir 24 delete rootProject.buildDir
25} 25}