Hello, I know that we can hook with Kotlin framewo...
# ios
m
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
Cocoapods plugin doesn’t have this feature currently.
j
what you could do is building the frameworks and delivering them via cocoapods, e.g. using vendored_frameworks in your podspec
m
@Jonas Bark Thanks, will that works for both debugging and release build?
j
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