File tree Expand file tree Collapse file tree
app/src/main/java/com/cryart/sabbathschool/navigation Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ import android.content.Intent
2828import android.net.Uri
2929import android.os.Bundle
3030import androidx.core.app.TaskStackBuilder
31- import androidx.core.os.bundleOf
3231import app.ss.auth.AuthRepository
3332import com.cryart.sabbathschool.core.navigation.AppNavigator
3433import 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 /* *
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ cash-app-turbine = "1.2.1"
2727circuit = " 0.33.1"
2828coil = " 2.7.0"
2929desugar_jdk_libs_minimal = " 2.1.5"
30- foundry = " 0.34 .0"
30+ foundry = " 0.35 .0"
3131google-hilt = " 2.59.2"
3232google-id = " 1.1.1"
3333google-material = " 1.13.0"
@@ -36,7 +36,7 @@ gradle-cache-fix = "3.0.3"
3636gradle-retry = " 1.6.4"
3737haze = " 1.7.2"
3838javax-annotation = " 1.3.2"
39- jdk = " 21 "
39+ jdk = " 23 "
4040joda-time = " 2.14.1"
4141jvmTarget = " 17"
4242kotlin = " 2.3.20"
You can’t perform that action at this time.
0 commit comments