2021-02-06 22:32:04 +00:00
|
|
|
// used both in common.gradle and themesources library
|
|
|
|
dependencies {
|
|
|
|
// Lib 1.2, but using specific commit so we don't need to bump up the version
|
2021-05-08 13:34:08 +00:00
|
|
|
compileOnly "com.github.tachiyomiorg:extensions-lib:8dd92e3"
|
2021-02-06 22:32:04 +00:00
|
|
|
|
|
|
|
// These are provided by the app itself
|
|
|
|
compileOnly "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
|
|
|
|
|
|
compileOnly 'com.github.inorichi.injekt:injekt-core:65b0440'
|
2021-04-28 19:38:05 +00:00
|
|
|
compileOnly 'com.squareup.okhttp3:okhttp:4.9.1'
|
|
|
|
compileOnly 'io.reactivex:rxjava:1.3.8'
|
|
|
|
compileOnly 'org.jsoup:jsoup:1.13.1'
|
|
|
|
compileOnly 'com.google.code.gson:gson:2.8.6'
|
2021-02-06 22:32:04 +00:00
|
|
|
compileOnly 'com.github.salomonbrys.kotson:kotson:2.5.0'
|
2021-06-02 10:40:59 +00:00
|
|
|
compileOnly 'org.jetbrains.kotlinx:kotlinx-serialization-protobuf:1.2.0'
|
|
|
|
compileOnly 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.2.0'
|
2021-02-08 21:37:48 +00:00
|
|
|
|
|
|
|
implementation project(":annotations")
|
|
|
|
compileOnly project(':duktape-stub')
|
2021-04-28 19:38:05 +00:00
|
|
|
}
|