Skip to content

Commit 1509bb4

Browse files
chore(deps): update all dependencies (#35)
| datasource | package | from | to | | -------------- | ----------------------------------------------------------------------- | ------ | ------ | | gradle-version | gradle | 7.5.1 | 7.6 | | maven | androidx.test.espresso:espresso-core | 3.4.0 | 3.5.0 | | maven | androidx.test.ext:junit | 1.1.3 | 1.1.4 | | maven | io.github.hoc081098:FlowExt | 0.4.0 | 0.5.0 | | maven | androidx.fragment:fragment-ktx | 1.5.3 | 1.5.5 | | maven | com.google.android.material:material | 1.6.1 | 1.7.0 | | maven | org.jetbrains.kotlin.android:org.jetbrains.kotlin.android.gradle.plugin | 1.7.20 | 1.7.22 | | maven | org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin | 1.7.20 | 1.7.22 | | maven | org.jetbrains.kotlin:kotlin-stdlib-jdk8 | 1.7.20 | 1.7.22 | Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 10ac144 commit 1509bb4

File tree

5 files changed

+16
-11
lines changed

5 files changed

+16
-11
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ dependencies {
5252
implementation libs.androidx.fragment
5353

5454
testImplementation 'junit:junit:4.13.2'
55-
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
56-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
55+
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
56+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
5757

5858
// coroutines
5959
implementation libs.kotlinx.coroutines.core

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[versions]
22
androidGradlePlugin = "7.3.1"
3-
kotlin = "1.7.20"
3+
kotlin = "1.7.22"
44
jmailenKotlinter = "3.12.0"
55
kotlinxCoroutines = "1.6.4"
66
androidxAppCompat = "1.5.1"
77
androidxCore = "1.9.0"
8-
androidMaterial = "1.6.1"
8+
androidMaterial = "1.7.0"
99
androidxConstraintLayout = "2.1.4"
10-
androidxFragment = "1.5.3"
11-
hoc081098FlowExt = "0.4.0"
10+
androidxFragment = "1.5.5"
11+
hoc081098FlowExt = "0.5.0"
1212
androidxLifecycle = "2.5.1"
1313

1414
[libraries]

gradle/wrapper/gradle-wrapper.jar

818 Bytes
Binary file not shown.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip
4+
networkTimeout=10000
45
zipStoreBase=GRADLE_USER_HOME
56
zipStorePath=wrapper/dists

gradlew

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
# Darwin, MinGW, and NonStop.
5656
#
5757
# (3) This script is generated from the Groovy template
58-
# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
58+
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
5959
# within the Gradle project.
6060
#
6161
# You can find Gradle at https://github.com/gradle/gradle/.
@@ -80,10 +80,10 @@ do
8080
esac
8181
done
8282

83-
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
84-
85-
APP_NAME="Gradle"
83+
# This is normally unused
84+
# shellcheck disable=SC2034
8685
APP_BASE_NAME=${0##*/}
86+
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
8787

8888
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
8989
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
@@ -143,12 +143,16 @@ fi
143143
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
144144
case $MAX_FD in #(
145145
max*)
146+
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
147+
# shellcheck disable=SC3045
146148
MAX_FD=$( ulimit -H -n ) ||
147149
warn "Could not query maximum file descriptor limit"
148150
esac
149151
case $MAX_FD in #(
150152
'' | soft) :;; #(
151153
*)
154+
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
155+
# shellcheck disable=SC3045
152156
ulimit -n "$MAX_FD" ||
153157
warn "Could not set maximum file descriptor limit to $MAX_FD"
154158
esac

0 commit comments

Comments
 (0)