bod
07/13/2020, 1:59 PMfind
I see that actually it did create a file, just totally not where I expected it... It's in ~/Library/Application Support/databases/myfile.db
(wtf! 😛).Maarten Bruggeman
07/27/2020, 2:40 PMThomas
07/27/2020, 2:44 PMNow that we’ve reached the final release candidate for Kotlin 1.4, it is time for you to start compiling and publishing! Unlike previous milestone releases, binaries created with Kotlin 1.4.0-RC are guaranteed to be compatible with Kotlin 1.4.0.
saket
07/27/2020, 2:44 PMjw
07/27/2020, 2:49 PMjw
07/27/2020, 2:49 PMrusshwolf
07/27/2020, 3:19 PMSam Garfinkel
08/06/2020, 5:57 PMwire-schema
to do some manipulation of proto files in memory. Is there anyway to add a ProtoFile
directly to the SchemaLoader
to resolve links? Trying to add ProtoFiles that I create myself to the set.jw
08/06/2020, 5:58 PMSam Garfinkel
08/06/2020, 5:59 PMSchema.fromFiles
does this actuallySam Garfinkel
08/06/2020, 5:59 PMjw
08/06/2020, 5:59 PMSchema.fromFiles
to link everythingSam Garfinkel
08/06/2020, 6:00 PMSam Garfinkel
08/06/2020, 6:03 PMProtoFileElement
then converting that to a ProtoFile
via the companion function right?jw
08/06/2020, 6:22 PMSam Garfinkel
08/06/2020, 6:25 PMtoElement
then do a bunch of copy
calls. If you want to mutate in-place it doesn’t seem possible.Sam Garfinkel
08/06/2020, 6:52 PMjw
08/06/2020, 6:53 PMSam Garfinkel
08/06/2020, 6:54 PMSiggi Gunnarss
08/10/2020, 7:49 PMbuildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.squareup.sqldelight:gradle-plugin:1.4.0'
}
}
plugins {
id 'org.jetbrains.kotlin.multiplatform' version '1.3.72'
id('com.squareup.sqldelight') version '1.4.0'
}
repositories {
google()
mavenCentral()
}
kotlin {
jvm()
mingwX64("mingw")
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib-common')
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core-common:1.3.7"
implementation "com.squareup.sqldelight:coroutines-extensions:1.4.0"
}
}
jvmMain {
dependencies {
implementation kotlin('stdlib-jdk8')
implementation "com.squareup.sqldelight:sqlite-driver:1.4.0"
}
}
mingwMain {
dependencies {
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core-native:1.3.7"
implementation "com.squareup.sqldelight:native-driver:1.4.0"
}
}
}
sqldelight {
Database {
packageName = "com.gunnarss.multiplatform"
}
}
}
The error is Could not resolve com.squareup.sqldelight:coroutines-extensions:1.4.0.
I can either have windows as a native target OR I can get the extension, not both.
If' I'm understanding the docs correctly, the above gradle should work?molikto
08/18/2020, 12:42 PMgsala
08/19/2020, 7:41 AM@ApiVersion(2)
fun remoteCall() : Call<ResponseBody>
or are interceptors only at OkHttp level.
(I want to add a query parameter to the annotated endpoints)jw
08/19/2020, 12:45 PMInvocation
in an interceptorjw
08/19/2020, 12:46 PMNikky
08/20/2020, 1:20 AMid("com.squareup.sqldelight")
?
or do i have to compile and publishTOMavenLocal if i want to try out the development state ?jw
08/20/2020, 1:21 AMjw
08/20/2020, 1:21 AMjw
08/20/2020, 1:22 AMNikky
08/20/2020, 1:24 AMNikky
08/20/2020, 1:24 AM