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
David Nedrow
04/19/2022, 4:04 PM
Hmm, I'm not sure about Gradle. I think fastlane can.
h
hfhbd
04/19/2022, 4:30 PM
A xcframework is just a folder. What do you want to do with the framework?
d
David Gonzalez
04/19/2022, 4:35 PM
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?