Skip to content

Commit ed34aae

Browse files
committed
Update dependencies
1 parent 7ee3420 commit ed34aae

File tree

7 files changed

+23
-25
lines changed

7 files changed

+23
-25
lines changed

gradle/libs.versions.toml

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[versions]
22
agp = "8.6.1"
3-
androidx-activityCompose = "1.9.3"
4-
androidx-navigationCompose = "2.8.3"
5-
androidx-ui-tooling = "1.7.4"
6-
androidx-viewmodelCompose = "2.8.6"
7-
coil = "3.0.0-rc02"
8-
compose-multiplatform = "1.7.0"
9-
kmpObservableViewmodel = "1.0.0-BETA-7"
10-
kmpNativeCoroutines = "1.0.0-ALPHA-37"
11-
koin = "4.0.0"
12-
kotlin = "2.0.21"
13-
kotlinx-serialization = "1.7.3"
14-
ksp = "2.0.21-1.0.25"
15-
ktor = "3.0.0"
3+
androidx-activityCompose = "1.10.1"
4+
androidx-navigationCompose = "2.8.9"
5+
androidx-ui-tooling = "1.7.8"
6+
androidx-viewmodelCompose = "2.8.7"
7+
coil = "3.1.0"
8+
compose-multiplatform = "1.7.3"
9+
kmpObservableViewmodel = "1.0.0-BETA-10"
10+
kmpNativeCoroutines = "1.0.0-ALPHA-41"
11+
koin = "4.0.3"
12+
kotlin = "2.1.20"
13+
kotlinx-serialization = "1.8.1"
14+
ksp = "2.1.20-1.0.32"
15+
ktor = "3.1.1"
1616

1717
[libraries]
1818
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activityCompose" }

gradle/wrapper/gradle-wrapper.jar

122 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

+2-3
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum
@@ -206,7 +205,7 @@ fi
206205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
207206

208207
# Collect all arguments for the java command:
209-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
210209
# and any embedded shellness will be escaped.
211210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
212211
# treated as '${Hostname}' itself on the command line.

iosApp/iosApp.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -417,15 +417,15 @@
417417
repositoryURL = "https://github.com/rickclephas/KMP-ObservableViewModel";
418418
requirement = {
419419
kind = exactVersion;
420-
version = "1.0.0-BETA-7";
420+
version = "1.0.0-BETA-10";
421421
};
422422
};
423423
EB50C48E2BE0EB69005DE781 /* XCRemoteSwiftPackageReference "KMP-NativeCoroutines" */ = {
424424
isa = XCRemoteSwiftPackageReference;
425425
repositoryURL = "https://github.com/rickclephas/KMP-NativeCoroutines.git";
426426
requirement = {
427427
kind = exactVersion;
428-
version = "1.0.0-ALPHA-37-spm-async";
428+
version = "1.0.0-ALPHA-41-spm-async";
429429
};
430430
};
431431
/* End XCRemoteSwiftPackageReference section */

iosApp/iosApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
"kind" : "remoteSourceControl",
77
"location" : "https://github.com/rickclephas/KMP-NativeCoroutines.git",
88
"state" : {
9-
"revision" : "398072f9a010122bbcfff78040681743442fa8d6",
10-
"version" : "1.0.0-ALPHA-37-spm-async"
9+
"revision" : "3553f4bfccf904f7cd58f3f32761d61c4e1640ea",
10+
"version" : "1.0.0-ALPHA-41-spm-async"
1111
}
1212
},
1313
{
1414
"identity" : "kmp-observableviewmodel",
1515
"kind" : "remoteSourceControl",
1616
"location" : "https://github.com/rickclephas/KMP-ObservableViewModel",
1717
"state" : {
18-
"revision" : "805c41ff1305b02909c3b50a7e34a46b3c029c04",
19-
"version" : "1.0.0-BETA-7"
18+
"revision" : "4515918e84556c234b057f26dcdc3478df99b487",
19+
"version" : "1.0.0-BETA-10"
2020
}
2121
}
2222
],

iosApp/iosApp/ListView.swift

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ struct ListView: View {
2121
LazyVGrid(columns: columns, alignment: .leading, spacing: 20) {
2222
ForEach(viewModel.objects, id: \.self) { item in
2323
NavigationLink(destination: DetailView(objectId: item.objectID)) {
24-
ObjectFrame(obj: item, onClick: {})
24+
ObjectFrame(obj: item)
2525
}
2626
.buttonStyle(PlainButtonStyle())
2727
}
@@ -38,7 +38,6 @@ struct ListView: View {
3838

3939
struct ObjectFrame: View {
4040
let obj: MuseumObject
41-
let onClick: () -> Void
4241

4342
var body: some View {
4443
VStack(alignment: .leading, spacing: 4) {

0 commit comments

Comments
 (0)