Skip to content

Commit

Permalink
Dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
olshevski committed Aug 15, 2023
1 parent ff9a878 commit c5e4f63
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 17 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ tasks.withType<KotlinCompile> {
}

dependencies {
implementation("com.android.tools.build:gradle:8.0.2")
implementation("com.android.tools.build:gradle:8.1.0")
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.0")

// fix the issue with Hilt down the line: https://github.com/google/dagger/issues/3068
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/AndroidSdkVersion.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
object AndroidSdkVersion {
const val Min = 21
const val Target = 33
const val Compile = 33
const val Target = 34
const val Compile = 34
}
25 changes: 12 additions & 13 deletions buildSrc/src/main/kotlin/Libs.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,19 @@ object Libs {
}

object Compose {
const val CompilerVersion = "1.5.0"
const val Bom = "androidx.compose:compose-bom:2023.06.01"
private const val BetaVersion = "1.5.0-beta03"
const val Animation = "androidx.compose.animation:animation:$BetaVersion"
const val Foundation = "androidx.compose.foundation:foundation:$BetaVersion"
const val Material = "androidx.compose.material:material:$BetaVersion"
const val CompilerVersion = "1.5.1"
const val Bom = "androidx.compose:compose-bom:2023.08.00"
const val Animation = "androidx.compose.animation:animation"
const val Foundation = "androidx.compose.foundation:foundation"
const val Material = "androidx.compose.material:material"
const val MaterialIconsExtended =
"androidx.compose.material:material-icons-extended:$BetaVersion"
"androidx.compose.material:material-icons-extended"
const val Material3 = "androidx.compose.material3:material3"
const val Runtime = "androidx.compose.runtime:runtime:$BetaVersion"
const val UiTooling = "androidx.compose.ui:ui-tooling:$BetaVersion"
const val UiToolingPreview = "androidx.compose.ui:ui-tooling-preview:$BetaVersion"
const val UiTestJunit4 = "androidx.compose.ui:ui-test-junit4:$BetaVersion"
const val UiTestManifest = "androidx.compose.ui:ui-test-manifest:$BetaVersion"
const val Runtime = "androidx.compose.runtime:runtime"
const val UiTooling = "androidx.compose.ui:ui-tooling"
const val UiToolingPreview = "androidx.compose.ui:ui-tooling-preview"
const val UiTestJunit4 = "androidx.compose.ui:ui-test-junit4"
const val UiTestManifest = "androidx.compose.ui:ui-test-manifest"

// note to self, dependencies go as follows:
// runtime <- ui <- foundation-layout <- animation <- foundation <- material
Expand Down Expand Up @@ -58,7 +57,7 @@ object Libs {
}

object Koin {
const val Compose = "io.insert-koin:koin-androidx-compose:3.4.5"
const val Compose = "io.insert-koin:koin-androidx-compose:3.4.6"
}

}
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Plugins.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fun PluginDependenciesSpec.plugin(pluginSpec: PluginSpec) {

object Plugins {

val Anvil = PluginSpec("com.squareup.anvil", "2.4.6")
val Anvil = PluginSpec("com.squareup.anvil", "2.4.7")
val Hilt = PluginSpec("com.google.dagger.hilt.android", Libs.Google.Dagger.Version)
val NexusPublishing = PluginSpec("io.github.gradle-nexus.publish-plugin", "1.3.0")
val Versions = PluginSpec("dev.olshevski.versions", "1.0.5")
Expand Down

0 comments on commit c5e4f63

Please sign in to comment.