:wave: I have a shared KMM module that is fetched ...
# multiplatform
n
👋 I have a shared KMM module that is fetched from a git submodule from my Android app. Each time gradle is synced, Android Studio is running the iOS tasks which actually take plenty of time and are not needed in this context. In other place, I use this KMM module to produce a XCFramework that is published using Cocoapods, there I really need the iOS tasks. Is there any way to disable the iOS building stuff in the Android app context?
p
Yeah use a gradle property and based on that skip the creation of source sets + targets
n
🤦 So obvious. Thanks! 🙂