Skip to content

Commit

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

* fix(deps): update dependency com.android.tools.build:gradle to v8.3.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 Mar 22, 2024
1 parent 9b02add commit a3cdbdb
Show file tree
Hide file tree
Showing 2 changed files with 12 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.1.0"
[libraries]
okhttp = "com.squareup.okhttp3:okhttp:4.12.0"
dokka = "org.jetbrains.dokka:dokka-gradle-plugin:1.9.20"
android-plugin = "com.android.tools.build:gradle:8.3.0"
android-plugin = "com.android.tools.build:gradle:8.3.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,13 +35,19 @@ enum class AgpVersion(

// stable
AGP_8_3(
value = "8.3.0",
value = "8.3.1",
minGradleVersion = GradleVersion.GRADLE_8_4,
),

// canary channel
// beta channel
AGP_8_4(
value = "8.4.0-alpha13",
value = "8.4.0-beta01",
minGradleVersion = GradleVersion.GRADLE_8_6,
),

// canary channel
AGP_8_5(
value = "8.5.0-alpha01",
minGradleVersion = GradleVersion.GRADLE_8_6,
),
}
Expand All @@ -56,7 +62,7 @@ enum class KotlinVersion(
KT_1_9_23("1.9.23"),

// beta
KT_2_0_0("2.0.0-Beta4"),
KT_2_0_0("2.0.0-Beta5"),
}

enum class GradleVersion(
Expand All @@ -76,7 +82,7 @@ enum class GradleVersion(

// rc
GRADLE_8_7(
value = "8.7-rc-3",
value = "8.7-rc-4",
),
;

Expand Down

0 comments on commit a3cdbdb

Please sign in to comment.