Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}
dependencies {
classpath("com.android.tools.build:gradle:8.13.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.21")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.3.20")

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
12 changes: 6 additions & 6 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ publishing {
create<MavenPublication>("maven") {
groupId = "com.lagradost"
artifactId = "nicehttp"
version = "0.4.17"
version = "0.4.18"
from(components["java"])
}
create<MavenPublication>("jitpack") {
groupId = "com.github.Blatzar" // jipack uses the GitHub username as groupId
artifactId = "nicehttp"
version = "0.4.17"
version = "0.4.18"
from(components["java"])
}
}
Expand All @@ -44,10 +44,10 @@ kotlin {

sourceSets {
dependencies {
val kotlinVersion = "2.2.0"
val kotlinVersion = "2.3.20"

// Parsing HTML
api("org.jsoup:jsoup:1.21.2")
api("org.jsoup:jsoup:1.22.1")

// Parsing JSON
/** Do not update to 2.13.2 it breaks compatibility with android < 24 !!! */
Expand All @@ -60,7 +60,7 @@ kotlin {
// Async
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion")
implementation("org.json:json:20250517")
implementation("org.json:json:20251224")
}
}
}
Expand All @@ -84,7 +84,7 @@ buildscript {
mavenCentral()
}
dependencies {
val kotlinVersion = "2.2.0"
val kotlinVersion = "2.3.20"
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
}
}