Skip to content

Commit

Permalink
gradle
Browse files Browse the repository at this point in the history
(cherry picked from commit 401b30d)
  • Loading branch information
crackededed committed Dec 3, 2023
1 parent c7cbf06 commit d87062e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ android {
applicationId = "com.github.andreyasadchy.xtra"
minSdk = 21
targetSdk = 34
versionCode = 213
versionName = "2.26.2"
versionCode = 214
versionName = "2.26.3"
resourceConfigurations += listOf("ar", "de", "en", "es", "fr", "in", "ja", "pt-rBR", "ru", "tr", "zh-rTW")
}

Expand Down Expand Up @@ -75,7 +75,7 @@ dependencies {
implementation(libs.room.ktx)
implementation(libs.room.paging)
ksp(libs.room.compiler)
implementation(libs.work.runtime.ktx)
implementation(libs.work.runtime)
implementation(libs.core.ktx)
implementation(libs.fragment.ktx)
implementation(libs.navigation.fragment.ktx)
Expand All @@ -101,7 +101,7 @@ dependencies {
implementation(libs.checker.qual)

constraints {
implementation("androidx.media:media:1.7.0-rc01") // https:/androidx/media/blob/release/constants.gradle#L47
implementation("androidx.media:media:1.7.0") // https:/androidx/media/blob/release/constants.gradle#L47
}

implementation(libs.coil)
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/com/github/andreyasadchy/xtra/XtraApp.kt
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ class XtraApp : Application(), Configuration.Provider, ImageLoaderFactory {
@Inject
lateinit var workerFactory: HiltWorkerFactory

override fun getWorkManagerConfiguration(): Configuration =
Configuration.Builder()
override val workManagerConfiguration: Configuration
get() = Configuration.Builder()
.setWorkerFactory(workerFactory)
.build()

Expand Down
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
android-gradle-plugin = "8.1.4"
android-gradle-plugin = "8.2.0"
apollo = "3.8.2"
appcompat = "1.7.0-alpha03"
checker-qual = "3.40.0"
Expand All @@ -13,7 +13,7 @@ flexbox = "3.0.0"
fragment = "1.6.2"
glide = "4.16.0"
glide-webpdecoder = "2.6.4.16.0"
hilt = "2.48.1"
hilt = "2.49"
hilt-extension-compiler = "1.1.0"
hilt-work = "1.1.0"
kotlin = "1.9.20"
Expand All @@ -27,10 +27,10 @@ open-m3u8 = "0.2.6"
paging = "3.2.1"
preference = "1.2.1"
retrofit = "2.9.0"
room = "2.6.0"
room = "2.6.1"
swiperefreshlayout = "1.1.0"
webkit = "1.8.0"
work = "2.8.1"
webkit = "1.9.0"
work = "2.9.0"

[libraries]
apollo-runtime = { module = "com.apollographql.apollo3:apollo-runtime", version.ref = "apollo" }
Expand Down Expand Up @@ -78,7 +78,7 @@ room-paging = { module = "androidx.room:room-paging", version.ref = "room" }
room-runtime = { module = "androidx.room:room-runtime", version.ref = "room" }
swiperefreshlayout = { module = "androidx.swiperefreshlayout:swiperefreshlayout", version.ref = "swiperefreshlayout" }
webkit = { module = "androidx.webkit:webkit", version.ref = "webkit" }
work-runtime-ktx = { module = "androidx.work:work-runtime-ktx", version.ref = "work" }
work-runtime = { module = "androidx.work:work-runtime", version.ref = "work" }

[plugins]
android-application = { id = "com.android.application", version.ref = "android-gradle-plugin" }
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit d87062e

Please sign in to comment.