Hello all! What is the way to setup CI/CD for a ko...
# getting-started
c
Hello all! What is the way to setup CI/CD for a kotlin multiplatform project?
m
well, you have to setup your CI/CD like you setup a normal gradle project, except for each platform target you have to setup a different job
for iOS target, if you use the cocoapod gradle plugin, you have to set a task before the xcodebuild to generate the dummy framework before build your app:
./gradlew :<your kmp module>:build :<your kmp module>:generateDummyFramework
without it, your pod gradle
syncTask
(generated by the cocoapod gradle plugin) will fail
c
Great! Thank you @magnumrocha 🙂 I’ll try it out
👍 1