Akram Bensalem
pablisco
Not a valid Kotlin file (expecting a parameter declaration) (cannot be auto-corrected)
voben
Karlo Lozovina
readln()
Exception in thread "main" kotlin.io.ReadAfterEOFException: EOF has already been reached
brabo-hi
Sourabh Rawat
xcrun: error: unable to find utility "xcodebuild", not a developer tool or in PATH
gradle clean check.
ktor-client-tests
Vivek Modi
Serializer has not been found for type 'ZonedDateTime'. To use context serializer as fallback, explicitly annotate type or property with @Contextual
@Serializable @Parcelize data class NearestResult( val day: ZonedDateTime, val event: String ) : Parcelable
Jacob Ras
Stefan Oltmann
Consumable configurations with identical capabilities within a project (other than the default configuration) must have unique attributes, but configuration ':shared:releaseFrameworkIosFat' and [configuration ':shared:releaseFrameworkIosArm64'] contain identical attribute sets. Consider adding an additional attribute to one of the configurations to disambiguate them.
listOf( /* App Store */ iosArm64(), /* Apple Silicon iOS Simulator */ iosSimulatorArm64(), /* Intel macOS Devices */ macosX64() ).forEach { it.binaries.framework( buildTypes = setOf(NativeBuildType.RELEASE) ) { baseName = "shared" /* Bitcode was deprecated with XCode 14 */ embedBitcode("disable") /* Exported dependencies */ export("com.appmattus.crypto:cryptohash:${Versions.cryptoHash}") } } val iosArm64Main by sourceSets.getting val iosSimulatorArm64Main by sourceSets.getting val macosX64Main by sourceSets.getting // val macosArm64Main by sourceSets.getting @Suppress("UnusedPrivateMember", "UNUSED_VARIABLE") // False positive val appleMain by sourceSets.creating { iosArm64Main.dependsOn(this) iosSimulatorArm64Main.dependsOn(this) macosX64Main.dependsOn(this) // macosArm64Main.dependsOn(this) dependencies { // Networking api("io.ktor:ktor-client-ios:${Versions.ktor}") // Database api("com.squareup.sqldelight:native-driver:${Versions.sqlDelight}") } }
eygraber
WindowInsets.isImeVisible
A modern programming language that makes developers happier.