ankushg
11/16/2021, 8:45 PMisolate
and iso-collections
are published as -a1
while everything else is not?
Would be a bit easier to wrangle dependency versions if those two were published under the regular version numbers, or if the other dependencies were also published under the -a1
suffixRak
11/17/2021, 12:38 PMAlexander Suraphel
11/23/2021, 4:53 PMCompilation is not supported for following modules: KaMPKit. Unfortunately you can't have non-Gradle Java modules and Android-Gradle modules in one project.
Shall I ignore it?Andrew O Hart
11/29/2021, 2:26 PMArchie
12/11/2021, 4:32 PMArchie
12/16/2021, 2:11 PMMatti MK
12/30/2021, 10:33 AMKermit
in `KaMPKit`: I can see that a logger instance is created for every location where it’s being used (https://github.com/touchlab/KaMPKit/blob/main/shared/src/commonMain/kotlin/co/touchlab/kampkit/Koin.kt#L63). Is this simply for the tag
? If there’s no need to switch tags, then is there any upside to injecting Logger
vs just calling the static methods like Logger.i { "something" }
Andrew O Hart
02/24/2022, 3:45 PMimplementation(kotlin("test"))
In the commonTest in build.gradle, it works, but I don't see something like this being declared in kampkitkpgalligan
02/27/2022, 12:23 AMedenman
03/03/2022, 4:54 AMVivek Modi
03/05/2022, 11:12 PMarrmixer
03/17/2022, 11:51 AMJacob Rhoda
03/28/2022, 3:23 PMkpgalligan
03/30/2022, 3:33 PM./gradlew build
because the Kotlin gradle plugin couldn’t handle it. I’m not sure if that is still true.Andrew O Hart
04/06/2022, 11:57 AMTrey
04/22/2022, 8:07 PMTrey
04/27/2022, 2:21 PMTrey
06/02/2022, 6:52 PMTrey
06/03/2022, 8:28 PMPaul Woitaschek
06/21/2022, 10:00 AMkpgalligan
06/22/2022, 2:39 AMArchie
09/27/2022, 7:11 AMkpgalligan
10/12/2022, 4:30 PMkpgalligan
10/12/2022, 4:30 PMkpgalligan
10/12/2022, 4:31 PMStefan Oltmann
10/17/2022, 1:29 PMKirill Zhukov
10/18/2022, 2:31 AMshahroz
10/20/2022, 8:17 PMandroid/jvm etc
? i just wanted shared module Framework from kotlin native so i can use its classes in my iOS app?lilypuchi
10/21/2022, 11:26 PMspmDevBuild
on the project updates Package.swift
to only the latest module.
For example for a project structure as,
- root
- domain
- build.gradle.kts // kmmBridge { .. } implemented
- strings
- build.gradle.kts // kmmBridge { .. } implemented
- util
- build.gradle.kts // kmmBridge { .. } implemented
When I run ./gradlew spmDevBuild
the Package.swift
is always
// swift-tools-version:5.3
import PackageDescription
let packageName = "util"
let package = Package(
name: packageName,
platforms: [
.iOS(.v13)
],
products: [
.library(
name: packageName,
targets: [packageName]
),
],
targets: [
.binaryTarget(
name: packageName,
path: "./core-util/build/XCFrameworks/debug/\(packageName).xcframework"
)
,
]
)
I would have to manually update the Package.swift finally in CI ? 🤔Carlos Monzon
10/22/2022, 8:19 AMokhttp3.internal.http2.StreamResetException: stream was reset: CANCEL