Just to share your experience about this error:
I am using fastlane + cocoapods.
I have a workspace with two dynamic frames:
Dependencies:
- A depends on AFNetworking using cocoapods
- B depends on A
Dependency is defined in the subfile.
The error was caused by running tests B.
In my case, the problem was due to a missing dependency on AFNetworking for the B.framework target.
Adding a pod dependency to AFNetworking in B.framework in a Podfile, everything was allowed.
Thus, even if target B was successfully compiled, AFNetworking was not integrated into test application B, and the simulator could not start application B test, increasing this "very significant" (*) error.
(*) thanks Apple for this!
Lubbo Jan 19 '17 at 15:20 2017-01-19 15:20
source share