Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartuzen committed Dec 11, 2023
1 parent 2a1d13e commit e769c7f
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 15 deletions.
2 changes: 1 addition & 1 deletion app/src/main/java/dev/bartuzen/qbitcontroller/App.kt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class App : Application(), Configuration.Provider, ImageLoaderFactory {
@Inject
lateinit var notificationManager: AppNotificationManager

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

Expand Down
5 changes: 5 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,8 @@ kotlin.code.style=official
org.gradle.configuration-cache=true
android.defaults.buildfeatures.buildconfig=true
android.enableR8.fullMode=false

# https://github.com/ben-manes/gradle-versions-plugin/issues/814#issuecomment-1752105377
systemProp.javax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl
systemProp.javax.xml.transform.TransformerFactory=com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl
systemProp.javax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[versions]
agp = "8.1.2"
kotlin = "1.9.20"
hilt = "2.48.1"
agp = "8.2.0"
kotlin = "1.9.21"
hilt = "2.49"
kotlinter = "3.16.0"
gradleVersions = "0.49.0"
gradleVersions = "0.50.0"
firebase-googleServices = "4.4.0"
firebase-crashlytics = "2.9.9"
androidx-core = "1.12.0"
Expand All @@ -17,14 +17,14 @@ androidx-lifecycle-viewModel = "2.6.2"
material = "1.10.0"
leakCanary = "2.12"
coroutines = "1.7.3"
work-runtime = "2.8.1"
work-runtime = "2.9.0"
work-hilt = "1.1.0"
retrofit = "2.9.0"
jackson = "2.13.4"
viewBindingPropertyDelegate = "1.5.9"
desugar = "2.0.4"
coil = "2.5.0"
firebase-bom = "32.5.0"
firebase-bom = "32.7.0"

[libraries]
androidx-core = { group = "androidx.core", name = "core-ktx", version.ref = "androidx-core" }
Expand Down
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
14 changes: 7 additions & 7 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -145,15 +145,15 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC2039,SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC2039,SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
Expand Down Expand Up @@ -202,11 +202,11 @@ fi
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'

# Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in
# double quotes to make sure that they get re-expanded; and
# * put everything else in single quotes, so that it's not re-expanded.
# Collect all arguments for the java command:
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
# and any embedded shellness will be escaped.
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
# treated as '${Hostname}' itself on the command line.

set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
Expand Down

0 comments on commit e769c7f

Please sign in to comment.