Tachiyomi-Extensions/build.gradle
Oldwangtouchtouchdoge 60e16cf119
Fix Manhuagui manga thumbnail, added ability to parse more manga details and view R18+ manga. (#3556)
* Fix Manhuagui manga thumbnail, added ability to parse more manga details and view R18+ manga.

* Fixed bugs and irregular codes. Move the logic to send Post and Get request for disguise into mangaDetailsRequest(), they will be send less frequently now.

* compileOnly

Co-authored-by: snakedoc83 <mikepeterson83@gmail.com>
2020-06-18 21:32:18 -04:00

28 lines
684 B
Groovy

buildscript {
ext.kotlin_version = '1.3.72'
ext.coroutines_version = '1.3.5'
repositories {
google()
maven { url 'https://plugins.gradle.org/m2/' }
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
classpath 'org.jmailen.gradle:kotlinter-gradle:2.3.2'
}
}
allprojects {
repositories {
google()
maven { url 'https://jitpack.io' }
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}