Skip to content
Merged
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
2 changes: 1 addition & 1 deletion apps/flipcash/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ bugsnag {

composeCompiler {
// Isolated Projects-safe root access (see AndroidLibraryComposeConventionPlugin).
stabilityConfigurationFile.set(
stabilityConfigurationFiles.add(
isolated.rootProject.projectDirectory.file("compose_compiler_config.conf")
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,13 +295,13 @@ class CoinbaseOnRampWebErrorTest {

@Test
fun guestRegionMismatchIsNotNotifiable() {
val error = CoinbaseOnRampWebError.RegionNotSupported.RegionMismatch()
val error: CoinbaseOnRampWebError = CoinbaseOnRampWebError.RegionNotSupported.RegionMismatch()
assertFalse(error is NotifiableError)
}

@Test
fun paymentSheetTimeoutIsNotNotifiable() {
val error = CoinbaseOnRampWebError.PaymentSheetTimeout()
val error: CoinbaseOnRampWebError = CoinbaseOnRampWebError.PaymentSheetTimeout()
assertFalse(error is NotifiableError)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class AndroidLibraryComposeConventionPlugin : Plugin<Project> {
// `rootProject.layout` reaches into another project's model, which
// Isolated Projects forbids; `isolated.rootProject` is the blessed
// read-only view that exposes the root project directory safely.
stabilityConfigurationFile.set(
stabilityConfigurationFiles.add(
isolated.rootProject.projectDirectory.file("compose_compiler_config.conf")
)
}
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ android-minSdk = "29"
android-targetSdk = "37"
android-java = "21"

kotlin = "2.3.21"
kotlin = "2.4.10"
ksp = "2.3.10"
kotlinx-coroutines = "1.11.0"
kotlinx-serialization = "1.11.0"
Expand Down Expand Up @@ -41,7 +41,7 @@ compose-view-models = "2.11.0"
compose-paging = "3.5.0"
compose-webview = "2.0.3"
compose-accompanist = "0.36.0"
compose-coil = "3.4.0"
compose-coil = "3.5.0"

hilt = "2.59.2"
hilt-jetpack = "1.4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,13 +128,14 @@ class SwapErrorTest {

@Test
fun timeoutIsNotNotifiable() {
assertFalse(SwapError.Timeout() is NotifiableError)
val error: SwapError = SwapError.Timeout()
assertFalse(error is NotifiableError)
}

@Test
fun terminalIsNotNotifiableAndCarriesState() {
val error = SwapError.Terminal(SwapState.CANCELLED)
assertFalse(error is NotifiableError)
assertFalse((error as SwapError) is NotifiableError)
assertEquals(SwapState.CANCELLED, error.state)
}

Expand Down
Loading