diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2018-10-11 21:09:45 +0530 |
---|---|---|
committer | حسين <zidhussein@gmail.com> | 2018-10-11 16:39:45 +0100 |
commit | 8ff0039be41e51e71e42553ff558640a7b74ec13 (patch) | |
tree | e3379af5ba457cdeb9bd9015722314467dabc5ed /build.gradle | |
parent | 9c932f1a10c31cd71206d741c102cc2beb576fa9 (diff) |
Update gradle and external dependencies (#429)
* Update gradle and external dependencies
- Switch away from deprecated compile directive
- Remove explicit buildToolsVersion, is defined by the gradle plugin now
- Fix build in SelectFolderActivity
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* Upgrade gradle plugin and wrapper to latest alpha
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
* Don't use alpha gradle plugin
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle index d5d573be..d0519e58 100644 --- a/build.gradle +++ b/build.gradle @@ -1,17 +1,14 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.1.51' + ext.kotlin_version = '1.2.71' repositories { + google() jcenter() mavenCentral() - maven { - url "https://maven.google.com" - } - google() } dependencies { - classpath 'com.android.tools.build:gradle:3.1.4' + classpath 'com.android.tools.build:gradle:3.2.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // NOTE: Do not place your application dependencies here; they belong @@ -21,6 +18,7 @@ buildscript { allprojects { repositories { + google() jcenter() mavenCentral() } |