forked from tachiyomiorg/extensions-lib
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Merge from upstream + expose more functions + build files refac…
…toration (#9) Co-authored-by: arkon <[email protected]> Co-authored-by: Alessandro Jean <[email protected]>
- Loading branch information
1 parent
b8186cc
commit 2c8b583
Showing
35 changed files
with
879 additions
and
441 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
jdk: | ||
- openjdk11 | ||
- openjdk17 | ||
install: | ||
- ./gradlew build :library:publishToMavenLocal |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
|
||
plugins { | ||
alias(libs.plugins.android.library) apply false | ||
alias(libs.plugins.kotlin.android) apply false | ||
alias(libs.plugins.dokka) apply false | ||
} | ||
|
||
tasks.register<Delete>("clean") { | ||
delete(rootProject.layout.buildDirectory) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[versions] | ||
agp_version = "8.2.0" | ||
coroutines_version = "1.7.1" | ||
kotlin_version = "1.9.21" | ||
serialization_version = "1.5.1" | ||
dokka_version = "1.9.10" | ||
|
||
[libraries] | ||
coroutines = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "coroutines_version" } | ||
|
||
kotlin-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "serialization_version" } | ||
kotlin-json-okio = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json-okio", version.ref = "serialization_version" } | ||
|
||
injekt-core = { module = "com.github.inorichi.injekt:injekt-core", version = "65b0440" } | ||
jsoup = { module = "org.jsoup:jsoup", version = "1.16.1" } | ||
okhttp = { module = "com.squareup.okhttp3:okhttp", version = "5.0.0-alpha.11" } | ||
rxandroid = { module = "io.reactivex:rxandroid", version = "1.2.1" } | ||
rxjava = { module = "io.reactivex:rxjava", version = "1.3.8" } | ||
|
||
[plugins] | ||
android-library = { id = "com.android.library", version.ref = "agp_version" } | ||
dokka = { id = "org.jetbrains.dokka", version.ref = "dokka_version" } | ||
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin_version" } |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip | ||
networkTimeout=10000 | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.