Skip to content

Commit 723e83f

Browse files
chore(deps): update foundry to v0.35.0 (#1507)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Tinashe Mzondiwa <tmzon08@gmail.com>
1 parent 4963648 commit 723e83f

6 files changed

Lines changed: 11 additions & 12 deletions

File tree

.github/workflows/on_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/setup-java@v5
1818
with:
1919
distribution: 'zulu'
20-
java-version: '21'
20+
java-version: '23'
2121

2222
- name: Decrypt secrets
2323
run: ./release/decrypt-secrets.sh

.github/workflows/on_push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/setup-java@v5
1818
with:
1919
distribution: 'zulu'
20-
java-version: '21'
20+
java-version: '23'
2121

2222
- name: Decrypt secrets
2323
run: ./release/decrypt-secrets.sh

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/setup-java@v5
2525
with:
2626
distribution: 'zulu'
27-
java-version: '21'
27+
java-version: '23'
2828

2929
- name: Gradle cache
3030
uses: gradle/actions/setup-gradle@v6

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/setup-java@v5
2525
with:
2626
distribution: 'zulu'
27-
java-version: '21'
27+
java-version: '23'
2828

2929
- name: Decrypt secrets
3030
run: ./release/decrypt-secrets.sh

app/src/main/java/com/cryart/sabbathschool/navigation/AppNavigatorImpl.kt

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ import android.content.Intent
2828
import android.net.Uri
2929
import android.os.Bundle
3030
import androidx.core.app.TaskStackBuilder
31-
import androidx.core.os.bundleOf
3231
import app.ss.auth.AuthRepository
3332
import com.cryart.sabbathschool.core.navigation.AppNavigator
3433
import com.cryart.sabbathschool.core.navigation.Destination
@@ -105,11 +104,11 @@ constructor(
105104
}
106105

107106
private fun getExtras(uri: Uri): Bundle {
108-
val pairs = uri.queryParameterNames.map { key ->
109-
key to uri.getQueryParameter(key)
110-
}.toTypedArray()
111-
112-
return bundleOf(*pairs)
107+
return Bundle().apply {
108+
uri.queryParameterNames.forEach { key ->
109+
putString(key, uri.getQueryParameter(key))
110+
}
111+
}
113112
}
114113

115114
/**

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ cash-app-turbine = "1.2.1"
2727
circuit = "0.33.1"
2828
coil = "2.7.0"
2929
desugar_jdk_libs_minimal = "2.1.5"
30-
foundry = "0.34.0"
30+
foundry = "0.35.0"
3131
google-hilt = "2.59.2"
3232
google-id = "1.1.1"
3333
google-material = "1.13.0"
@@ -36,7 +36,7 @@ gradle-cache-fix = "3.0.3"
3636
gradle-retry = "1.6.4"
3737
haze = "1.7.2"
3838
javax-annotation = "1.3.2"
39-
jdk = "21"
39+
jdk = "23"
4040
joda-time = "2.14.1"
4141
jvmTarget = "17"
4242
kotlin = "2.3.20"

0 commit comments

Comments
 (0)