I am trying to use the `OMGHTTPURLRQ` library in a...
# kotlin-native
t
I am trying to use the
OMGHTTPURLRQ
library in a iOS app written in Kotlin/Native, but my app crashes because "OMGHTTPURLRQ class was not found" (log from Xcode). Also, CLion does not see the
OMGHTTPURLRQ
class or
import libs.*
statement.
./gradlew compileKonan
works with no errors. This is how I try to use it: https://github.com/radiKal07/KotlinGithubTop10/blob/master/ios/src/main/kotlin/GithubService.kt Does anybody know what I am doing wrong ? It is basically the same code from kotlinconf-app.
o
Likely you need to generate interop stubs with this library, as it is not seems to be part of Apple platform
t
I have the standalone framework and I am trying to link it with my app.