Skip to content

Commit

Permalink
chore: bump dependencies and fix deprecated methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Yash-Garg committed Sep 8, 2023
1 parent f308f1b commit 9c369f4
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 18 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ plugins {
id("dev.yashgarg.qbit.kotlin-common")
}

val clean by tasks.existing(Delete::class) { delete(rootProject.buildDir) }
val clean by tasks.existing(Delete::class) { delete(rootProject.layout.buildDirectory) }

afterEvaluate {
tasks.prepareKotlinBuildScriptModel.dependsOn(tasks.copyGitHooks, tasks.installGitHooks)
Expand Down
27 changes: 13 additions & 14 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,33 +1,32 @@
[versions]
axCore = "1.10.1"
axCore = "1.12.0"
axAppcompat = "1.6.1"
axActivity = "1.7.2"
axConstraintlayout = "2.1.4"
axDatastore = "1.0.0"
axNavigation = "2.6.0"
axTest = "1.4.0"
axNavigation = "2.7.2"
axWork = "2.8.1"
binary_compat = "0.13.2"
coroutines = "1.7.1"
coroutines = "1.7.3"
googleMaterial = "1.9.0"
agp = "8.2.0-alpha07"
agp = "8.2.0-alpha15"
espresso = "3.5.1"
hilt = "2.46.1"
hilt = "2.48"
axHilt = "1.0.0"
ktor = "2.3.1"
lifecycle = "2.6.1"
kotlin = "1.8.21"
lifecycle = "2.6.2"
kotlin = "1.9.10"
mockito = "5.3.1"
room = "2.5.1"
room = "2.5.2"
spotless = "6.19.0"
uiautomator = "2.2.0"
serialization = "1.5.1"
serialization = "1.6.0"

[libraries]
androidx-core-ktx = { module = "androidx.core:core-ktx", version.ref = "axCore" }
androidx-activity = { module = "androidx.activity:activity-ktx", version.ref = "axActivity" }
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "axAppcompat" }
androidx-benchmark-junit = "androidx.benchmark:benchmark-macro-junit4:1.2.0-alpha15"
androidx-benchmark-junit = "androidx.benchmark:benchmark-macro-junit4:1.2.0-beta05"
androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "axConstraintlayout" }
androidx-datastore = { module = "androidx.datastore:datastore-preferences", version.ref = "axDatastore" }
androidx-swiperefreshlayout = "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
Expand Down Expand Up @@ -56,9 +55,9 @@ kotlin-coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-te
coroutines-turbine = { module = "app.cash.turbine:turbine", version = "0.13.0" }

compose-activity = "androidx.activity:activity-compose:1.7.2"
compose-compiler = "androidx.compose.compiler:compiler:1.4.7"
compose-foundation = "androidx.compose.foundation:foundation:1.4.3"
compose-material3 = "androidx.compose.material3:material3:1.1.0"
compose-compiler = "androidx.compose.compiler:compiler:1.5.3"
compose-foundation = "androidx.compose.foundation:foundation:1.5.1"
compose-material3 = "androidx.compose.material3:material3:1.1.1"
compose-material-icons = "org.jetbrains.compose.material:material-icons-extended-desktop:1.4.0"
compose-theme-adapter = "com.google.accompanist:accompanist-themeadapter-material3:0.30.1"

Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=e111cb9948407e26351227dabce49822fb88c37ee72f1d1582a69c68af2e702f
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionSha256Sum=222818637ce0a4cb82e322bf847ea49ac319aecdb363d81acabd9e81315d08f6
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-rc-2-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencyResolutionManagement {
}
}

plugins { id("com.gradle.enterprise") version "3.13.3" }
plugins { id("com.gradle.enterprise") version "3.14.1" }

gradleEnterprise {
buildScan {
Expand Down

0 comments on commit 9c369f4

Please sign in to comment.