mirror of
https://github.com/tachiyomiorg/tachiyomi-extensions.git
synced 2025-12-10 09:02:02 +01:00
Expose coroutines dependencies to all extensions by default (#13757)
This commit is contained in:
@@ -1,13 +1,9 @@
|
||||
include(":core")
|
||||
|
||||
include(":lib-dataimage")
|
||||
project(":lib-dataimage").projectDir = File("lib/dataimage")
|
||||
|
||||
include(":lib-unpacker")
|
||||
project(":lib-unpacker").projectDir = File("lib/unpacker")
|
||||
|
||||
include(":lib-cryptoaes")
|
||||
project(":lib-cryptoaes").projectDir = File("lib/cryptoaes")
|
||||
listOf("dataimage", "unpacker", "cryptoaes").forEach {
|
||||
include(":lib-$it")
|
||||
project(":lib-$it").projectDir = File("lib/$it")
|
||||
}
|
||||
|
||||
if (System.getenv("CI") == null || System.getenv("CI_MODULE_GEN") == "true") {
|
||||
// Local development (full project build)
|
||||
|
||||
Reference in New Issue
Block a user