https://kotlinlang.org logo
Title
m

Mohammadsss1

05/13/2019, 10:34 PM
Hello, I know that we can hook with Kotlin framework from Xcode using the new Cocoapods plugin inside the pod file like this :
pod 'Shared', :path => '/Users/.../Shared'
However, can we deploy it remotely? so anyone can benefit and build it it directly inside any iOS project? Something like
pod 'Alamofire', '4.7.3'
s

svyatoslav.scherbina

05/14/2019, 7:20 AM
Cocoapods plugin doesn’t have this feature currently.
j

Jonas Bark

05/14/2019, 10:11 AM
what you could do is building the frameworks and delivering them via cocoapods, e.g. using vendored_frameworks in your podspec
m

Mohammadsss1

05/14/2019, 10:31 AM
@Jonas Bark Thanks, will that works for both debugging and release build?
j

Jonas Bark

05/14/2019, 10:32 AM
don't see why not! we actually do this for one of our libraries so feel free to ask if you need further help
👍 1