getting "reactnativenavigationtest" signin error

Viewed 469

whenever I try to run, I get

error: Signing for "ReactNativeNavigationTests" requires a development team. Select a development team in the project editor. (in target 'ReactNativeNavigationTests')

I am signed in as my development team in xcode.. what do I need to do to fix this problem?

3 Answers

I had the same problem and the picture below shows what solved my problem:

enter image description here

Go into Libraries > ReactNativeNavigation.xcodeproj, right click the ReactNativeNavigationTests target under Targets in the right pane, and hit Delete. Problem solved.

The way I fixed it was to click on my project on the top left, go to Build Phases > Link Binary With Libraries and remove (-) "libReactNativeNavigationTests.a".

It will probably affect running tests with this library but it was not an issue for me then.

Related