https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
c

Cristián Arenas

11/22/2019, 8:50 PM
When I compile my project for iOS, the
.h
includes a lot of internal Kotlin stuff (like
KotlinNumber
,
KotlinUByte
,
Sqldelight_runtimeTransacter
, etc), how can I stop it from doing that? I just want it to expose what I mark as
public
Let’s continue over here?
m

mbonnin

11/22/2019, 9:05 PM
👍
IDE is a big part of the developer experience
I'd expect it to work but I've had all kind of issues
c

Cristián Arenas

11/22/2019, 9:06 PM
The thing is working, it’s just that it exposes a lot of Kotlin internals
It’s not terrible, but it’s just not pretty
k

Kris Wong

11/22/2019, 9:16 PM
those are required to support your APIs
c

Cristián Arenas

11/22/2019, 9:17 PM
My API was designed not to expose any of that, so I guess I’ll have to create a small wrapper library to hide all of this
3 Views