Stefan Oltmann
Execution failed for task ':shared:allTests'.
> Failed to execute all tests:
:shared:iosX64Test: java.lang.IllegalStateException: command '/usr/bin/xcrun' exited with errors (exit code: 148)
Tom Truyen
// Fixes the issue that the DisplayMetrics 1.5x's the size of everything override fun attachBaseContext(newBase: Context?) { val newOverride = Configuration(newBase?.resources?.configuration) newOverride.densityDpi = DisplayMetrics.DENSITY_MEDIUM applyOverrideConfiguration(newOverride) super.attachBaseContext(newBase) }
Aleksey Zamulla
neetkee
Table .selectAll() .where { Table.someColumn.eq(someValue) } .count()
Table .select(Table.id) .where { Table.someColumn.eq(someValue) } .count()
Colton Idle
System.currentTimeMillis() advanceTimeBy(1.minutes) System.currentTimeMillis()
PixelHamster
gradle build
/home/merlijn/.gradle/caches/modules-2/files-2.1/com.google.devtools.ksp/symbol-processing-gradle-plugin/1.8.21-1.0.11/84f788fcf1cbc31bb6491f29df3343c8b5fcc7c1/symbol-processing-gradle-plugin-1.8.21-1.0.11.jar!/META-INF/gradle-plugin.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.8.0, expected version is 1.6.0.
dave08
The test application has already been built. Make sure you configure the application before accessing the client for the first time.
testApplication
Ryunos
kartoffelsup
val exponentialBackoff: Schedule<Throwable, Double> = Schedule.exponential(TimeUnit.SECONDS.toNanos(2L).toDouble()) val retrySchedule = exponentialBackoff.jittered() .whileOutput { TimeUnit.NANOSECONDS.toSecods(it.toLong()) < 10.0 } .untilInput { when (it) { is ApiException -> it.statusCode in 400 until 500 ... else -> false }
brabo-hi
androidx.activity:activity-compose
1.6.x
1.4.x
A modern programming language that makes developers happier.