Are ios artifacts now published separately per arc...
# ktor
r
Are ios artifacts now published separately per architecture? I can’t resolve
io.ktor:ktor-client-core-ios:1.1.1
,
io.ktor:ktor-client-json-ios:1.1.1
, or
io.ktor:ktor-client-mock-ios:1.1.1
, but using
iosx64
instead of
ios
works fine. Oddly I have no issue with
io.ktor:ktor-client-ios:1.1.1
.
j
I might misunderstand this but ktor moved to the kotlin-multiplatform plugin with 1.1.0. I guess this means you don't have to reference e.g. client-json-ios anymore if you already use client-json as a common dependency. I haven't been able to test this theory as I couldn't compile it due the fact that I need to use kotlin 1.3.20-eap-52 and serialization 0.10.0-eap-1 which throws a bunch of odd ABI errors.
e
The
ios
dependencies is
native
now.(except
ktor-client-ios
). I’ll publish the migration guide.
r
Yeah some documentation would probably be helpful. And I did try including things only from common but wasn't able to get it working. That is something I would like to understand better for my own libraries as well.
Oh I see the post above was edited. That should help some.