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.
This commit is contained in:
HellPie 2018-08-31 00:46:54 +02:00 committed by HellPie
parent f66664a8a2
commit 0ee004d78d
2 changed files with 3 additions and 2 deletions

View File

@ -14,7 +14,7 @@ def getGitSha = { ->
android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
// buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.keylesspalace.tusky"
minSdkVersion 19

View File

@ -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"
}
}