From 0ee004d78d788aefea1e099009ee74e4a9eba4d3 Mon Sep 17 00:00:00 2001 From: HellPie Date: Fri, 31 Aug 2018 00:46:54 +0200 Subject: [PATCH] Update Gradle plugin to work with latest Android Studio 3.3 Canary 8 Just like the other commit, this will be reverted once the feature is working. I simply don't want to deal with what changes in my installation of Android Studio 3.1.4 Stable which breaks the layout preview rendering. --- app/build.gradle | 2 +- build.gradle | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 566060618..ea918fb97 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -14,7 +14,7 @@ def getGitSha = { -> android { compileSdkVersion 27 - buildToolsVersion '27.0.3' +// buildToolsVersion '27.0.3' defaultConfig { applicationId "com.keylesspalace.tusky" minSdkVersion 19 diff --git a/build.gradle b/build.gradle index 0cb00d212..f0d490469 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,8 @@ buildscript { google() } dependencies { - classpath 'com.android.tools.build:gradle:3.3.0-alpha07' +// classpath 'com.android.tools.build:gradle:3.1.4' + classpath 'com.android.tools.build:gradle:3.3.0-alpha08' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } }