aiidziis
11/10/2021, 3:06 PMco.touchlab:kermit-crashlytics:0.1.9
published?
When trying to reference it I get: Could not GET '<https://kotlin.bintray.com/kotlinx/co/touchlab/kermit-crashlytics/0.1.9/kermit-crashlytics-0.1.9.pom>'. Received status code 403 from server: Forbidden
Or is it published in different repository?Michael Friend
11/10/2021, 3:19 PM1.0.0-rc4
version. Keep in mind that the update to 1.0 changed a lot of the base kermit api so you’ll have to do some refactoring if you’re coming from 0.1.9
, and also that kermit-crashlytics
is marked Experimental
so its possible it will change in the futureaiidziis
11/10/2021, 3:26 PMCould not GET '<https://kotlin.bintray.com/kotlinx/co/touchlab/kermit-crashlytics-test/1.0.0-rc4/kermit-crashlytics-test-1.0.0-rc4.pom>'. Received status code 403 from server: Forbidden
Looks like this one is not published. Without this one can’t get our iosTests to run.implementation("co.touchlab:kermit-crashlytics-test:1.0.0")
w: Interop library /Users/.gradle/caches/modules-2/files-2.1/co.touchlab/kermit-crashlytics-iosx64/1.0.0-rc4/b5b06dd334ae3c177c20d7cdca64d8df89df6c0d/kermit-crashlytics-cinterop-kermit-crashlytics can't be exported with -Xexport-library
We have a setup where our shared code is exported as SPM. When creating SPM framework we get this warning. Is that ok?kpgalligan
11/11/2021, 4:51 PMkermit-crashlytics
, you need to be building a static framework, and if you're using the Jetbrains XCFramework vs the 3rd party open source plugin, you're probably building a dynamic framework (XCFramework
from Jetbrains has a bug with static framework that's fixed in kotlin 1.6.2x, which is a bit down the road)aiidziis
11/11/2021, 5:42 PMkpgalligan
11/11/2021, 7:04 PMaiidziis
11/11/2021, 7:13 PMkpgalligan
11/11/2021, 7:14 PMPackage.swift
. We're doing local/remote dev with SPM now. Our work is kind of split between cocoapods and SPM at the moment, based on client needs.XCFramework
task from JB exists now, but again, it doesn't do static frameworks due to a bug, fixed in 1.6.2x. We primarily do static, so it's a bit of a blocker.aiidziis
11/11/2021, 7:17 PM