Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all dependencies #35

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 17
- name: Build with Gradle
Expand Down
20 changes: 10 additions & 10 deletions android-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ android {


dependencies {
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.3")
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.2")

implementation(platform("com.google.firebase:firebase-bom:26.2.0"))
implementation(platform("com.google.firebase:firebase-bom:33.4.0"))
implementation("com.google.firebase:firebase-analytics-ktx")
implementation("androidx.activity:activity-compose:1.7.2")
implementation("androidx.activity:activity-compose:1.9.2")

implementation(platform(libs.androidx.compose.bom))
implementation(libs.androidx.compose.foundation)
Expand All @@ -136,20 +136,20 @@ dependencies {
implementation(libs.koin.android)
implementation(libs.koin.androidx.compose)

implementation("io.github.pushpalroy:jetlime:2.0.1")
implementation("io.github.pushpalroy:jetlime:3.0.1")

// TODO: Added this as a temporary fix for a crash in ProgressIndicator, can be removed later.
// Issue: https://github.com/JetBrains/compose-multiplatform/issues/4157
implementation("androidx.compose.material3:material3-android:1.2.1")
implementation("androidx.compose.material3:material3-android:1.3.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.7.1")
implementation("com.google.maps.android:android-maps-utils:2.3.0")
implementation("com.google.maps.android:android-maps-utils:3.8.2")

implementation("com.google.android.gms:play-services-location:16.0.0")
implementation("com.google.android.gms:play-services-maps:18.0.2")
implementation("com.google.android.gms:play-services-location:21.3.0")
implementation("com.google.android.gms:play-services-maps:19.0.0")

testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
androidTestImplementation("androidx.test.ext:junit:1.2.1")
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")

implementation(project(":SharedCode"))
}
Expand Down
4 changes: 2 additions & 2 deletions ar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ dependencies {
implementation Kotlin.stdLib

// ARCore
implementation 'com.google.ar:core:1.4.0'
implementation 'de.javagl:obj:0.2.1'
implementation 'com.google.ar:core:1.46.0'
implementation 'de.javagl:obj:0.4.0'
}
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ koinComposeMultiplatform = "1.2.0-Beta4"
ktor = "3.0.0"
slf4j = "2.0.16"
sqlDelight = "2.0.2"
kmpNativeCoroutines = "1.0.0-ALPHA-35"
kmpNativeCoroutines = "1.0.0-ALPHA-36"
googleServices = "4.4.2"

androidxActivity = "1.9.2"
Expand All @@ -24,11 +24,11 @@ androidxComposeBom = "2024.09.03"
androidxNavigationCompose = "2.8.2"
uiToolingPreview = "1.7.3"
androidxLifecycle = "2.8.6"
imageLoader = "1.8.3"
imageLoader = "1.8.4"
osmdroidAndroid = "6.1.20"
googleMapsCompose = "5.0.3"
googleMapsCompose = "6.1.2"

composeMultiplatform = "1.6.11"
composeMultiplatform = "1.7.0+build1877-release-1.7"
accompanist = "0.36.0"
coilCompose = "2.7.0"
horologist = "0.6.20"
Expand All @@ -38,7 +38,7 @@ junit = "4.13.2"
androidxTestJUnit = "1.2.1"
robolectric = "4.13"
androidxTestCore = "1.6.1"
mockito = "3.11.2"
mockito = "5.2.0"

multiplatformSettings = "1.2.0"
kermit = "2.0.4"
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 @@
#Sun May 28 21:12:18 IST 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading