mirror of
https://github.com/tuskyapp/Tusky
synced 2024-12-26 08:44:57 +01:00
0ee004d78d
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.
27 lines
620 B
Groovy
27 lines
620 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.2.60'
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
dependencies {
|
|
// 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"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
maven { url "https://jitpack.io" }
|
|
google()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|