Replies: 1 comment 1 reply
-
Unless there is a business requirement not to expose dependencies (e.g. security) — what's wrong with defining TCA as a dependency? Given framework is going to be closed source I assume (!) it will be used by 3rd parties. What if 3rd party uses TCA in their project? The embedding of TCA into your framework would cause compilation errors about duplicate symbols. By having TCA defined as your framework's dependency you'd be able to leverage already present TCA framework in the 3rd party's project. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We're building an iOS framework - that by a business decision has to be closed source - and we'd like to use the composable architecture in it. At first it seemed like a viable option, however now we've ran into several issues.
swift-composable-architecture
and the others it depends on.Does anyone have experience with such setup? Is this even possible, or should I just go another way? I would not like to do it without TCA and would prefer not to do dirty hacks like copying all dependency sources into my target.
Beta Was this translation helpful? Give feedback.
All reactions