update build tools and kotlin

This commit is contained in:
Conny Duck 2018-10-14 16:30:12 +02:00
parent 80f485c367
commit 16b53a5917
2 changed files with 2 additions and 3 deletions

View File

@ -14,7 +14,6 @@ def getGitSha = { ->
android { android {
compileSdkVersion 28 compileSdkVersion 28
buildToolsVersion '28.0.2'
defaultConfig { defaultConfig {
applicationId "com.keylesspalace.tusky" applicationId "com.keylesspalace.tusky"
minSdkVersion 21 minSdkVersion 21

View File

@ -1,13 +1,13 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules. // Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript { buildscript {
ext.kotlin_version = '1.2.60' ext.kotlin_version = '1.2.71'
repositories { repositories {
jcenter() jcenter()
google() google()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.2.0' classpath 'com.android.tools.build:gradle:3.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
} }
} }