Hey, is there a Gradle plugin/task to publish an i...
# multiplatform
d
Hey, is there a Gradle plugin/task to publish an iOS framework to a private repo? If not, which other way to handle framework distribution?
d
Hmm, I'm not sure about Gradle. I think fastlane can.
h
A xcframework is just a folder. What do you want to do with the framework?
d
From Kotlin 1.5.30 there are gradle tasks to create the debug and release frameworks. I would like a similar task to publish them to a private repo. Actually, the real questions would be, how to publish debug and release versions in a private repo to be able to use them with cocoapods Currently, I have a repo exposing: • MyFramework.tar.gz ◦ debug ▪︎ RedwolfUtils.xcframework ▪︎ RedwolfUtils.podspec Would it work adding a release folder? How to choose which one to use in my iOS app?