Skip to content

Commit

Permalink
fix(deps): update dependency com.android.tools.build:gradle to v8.2.1 (
Browse files Browse the repository at this point in the history
…#701)

* fix(deps): update dependency com.android.tools.build:gradle to v8.2.1

* Update TestOptions.kt

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Gabriel Ittner <[email protected]>
  • Loading branch information
renovate[bot] and gabrielittner authored Jan 6, 2024
1 parent eed76ce commit 4fb8a9f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ktlint = "12.0.3"
[libraries]
okhttp = "com.squareup.okhttp3:okhttp:4.12.0"
dokka = "org.jetbrains.dokka:dokka-gradle-plugin:1.9.10"
android-plugin = "com.android.tools.build:gradle:8.2.0"
android-plugin = "com.android.tools.build:gradle:8.2.1"
ktlint-plugin = { module = "org.jlleitschuh.gradle:ktlint-gradle", version.ref = "ktlint" }
maven-publish-plugin = { module = "com.vanniktech:gradle-maven-publish-plugin", version.ref = "maven-publish" }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ enum class AgpVersion(

// stable
AGP_8_2(
value = "8.2.0",
value = "8.2.1",
minGradleVersion = GradleVersion.GRADLE_8_1,
minJdkVersion = JavaVersion.VERSION_17,
),
Expand All @@ -49,7 +49,7 @@ enum class AgpVersion(

// canary channel
AGP_8_4(
value = "8.4.0-alpha01",
value = "8.4.0-alpha03",
minGradleVersion = GradleVersion.GRADLE_8_1,
minJdkVersion = JavaVersion.VERSION_17,
),
Expand All @@ -67,16 +67,16 @@ enum class KotlinVersion(
),

// stable
KT_1_9_21("1.9.21"),
KT_1_9_22("1.9.22"),

// beta
KT_2_0_0("2.0.0-Beta2"),
;

companion object {
// aliases for skipped versions
val KT_1_9_0 = KT_1_9_21
val KT_1_9_20 = KT_1_9_21
val KT_1_9_0 = KT_1_9_22
val KT_1_9_20 = KT_1_9_22
}
}

Expand Down

0 comments on commit 4fb8a9f

Please sign in to comment.