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

Jan Stoltman

09/18/2019, 8:15 AM
Hey guys, I'm working on multiplatform project with iOS app with K/N framework and everything worked just fine untill I've added a cinterop Keychain wrapper written in ObjectiveC. Right now I'm getting
bitcode bundle could not be generated because (...) was built without full bitcode.
when trying to build an archive of my app. Has anybody faced something like this before?
s

svyatoslav.scherbina

09/18/2019, 9:31 AM
What is
(...)
here?
j

Jan Stoltman

09/18/2019, 9:42 AM
It's path to my generated framework
s

svyatoslav.scherbina

09/18/2019, 9:44 AM
What is
a cinterop Keychain wrapper written in ObjectiveC
?
j

Jan Stoltman

09/18/2019, 9:49 AM
It's a library written in ObjectiveC. You can see the whole thing here: https://github.com/netguru/Kissme/tree/master/ios/library/keychainwrapper
s

svyatoslav.scherbina

09/18/2019, 10:32 AM
Is this library built with bitcode enabled?
j

Jan Stoltman

09/18/2019, 10:50 AM
Good catch, no it's not. So it should work just fine once I recompile the
.a
file?
s

svyatoslav.scherbina

09/18/2019, 11:49 AM
It should.
7 Views