The biggest promise of TCA is that it's composable and allows for apps to be split into small, maintainable frameworks. I build an app using that approach and now want to add a watchOS version of it. After I added the extension and tried running it, I got the following error:
Building for watchOS Simulator, but the linked framework is building for iOS Simulator. You may need to configure to build for watchOS Simulator.
After searching for this error, it appears that it's not possible to share frameworks between iOS and watchOS. My question is, did I miss anything or is this really the case? And if it is, will I need to move all my code in one framework in order to support multiple platforms?