2017-01-21 16:55:27 +00:00
|
|
|
buildscript {
|
2019-04-13 09:22:10 +00:00
|
|
|
ext.kotlin_version = '1.3.21'
|
2017-01-21 16:55:27 +00:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
2018-02-04 12:55:21 +00:00
|
|
|
google()
|
2017-01-21 16:55:27 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2019-04-13 09:22:10 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:3.3.2'
|
2017-01-21 16:55:27 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2018-02-04 12:55:21 +00:00
|
|
|
google()
|
2017-01-21 16:55:27 +00:00
|
|
|
maven { url 'https://dl.bintray.com/inorichi/tachiyomi' }
|
2018-05-21 00:23:13 +00:00
|
|
|
maven { url "https://jitpack.io" }
|
2017-01-21 16:55:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|