Description
React Native has only static library targets. Any reason why there are no dynamic framework targets as well?

I understand why this was done from the start, as RN supported iOS 7 (and possibly below) at some point, but since the project now has a deployment target of iOS 8, there really is nothing to prevent dynamic frameworks on the surface. Any underlying technical issues in supporting it?
Adding dynamic framework targets will finally allow stopping the HEADER_SEARCH_PATHS hell of sub-projects. Working with Swift projects will also be much simpler.
Solution
There are two solutions I can think of; add dynamic frameworks targets directly and include all source files there, all headers in the headers phase. Or, create a dynamic framework wrapper that links with the static libs, but still exposes the headers in a headers phase. The former is more elegant, but the latter can be a little bit less work to maintain.
Additional Information
- React Native version: Latest git source as of 2016-12-7.
- Platform: iOS
- Operating System: MacOS/Xcode
Description
React Native has only static library targets. Any reason why there are no dynamic framework targets as well?
I understand why this was done from the start, as RN supported iOS 7 (and possibly below) at some point, but since the project now has a deployment target of iOS 8, there really is nothing to prevent dynamic frameworks on the surface. Any underlying technical issues in supporting it?
Adding dynamic framework targets will finally allow stopping the
HEADER_SEARCH_PATHShell of sub-projects. Working with Swift projects will also be much simpler.Solution
There are two solutions I can think of; add dynamic frameworks targets directly and include all source files there, all headers in the headers phase. Or, create a dynamic framework wrapper that links with the static libs, but still exposes the headers in a headers phase. The former is more elegant, but the latter can be a little bit less work to maintain.
Additional Information