Looks like am doing something wrong and iOS module...
# multiplatform
n
Looks like am doing something wrong and iOS module didn’t recognize ktor, even after I added needed dependency. (here is my project in github, I messed up with gitignore, but still it’s not so big : https://github.com/nbaklanov-issart/ktorTry) Do I missing something? Do I need to add or set something else?
o
@e5l ^^
👀 1
e
Hi @Nikolai. Thanks for the report. The iOS client engine dependency is separate from core:
Copy code
implementation "io.ktor:ktor-client-ios:1.0.0-beta-3"
👍 1
Also you have to put:
Copy code
enableFeaturePreview('GRADLE_METADATA')
in
settings.gradle
👍 1
n
@e5l Thank you for response! Yes, those two changes solved problem. Thanks!
🎉 1