Open your subfile and delete the Project_Tests block.
eg,
The following error:
use_frameworks! target 'MyPodProject_Example' do pod 'MyPodProject', :path => '../' target 'MyPodProject_Tests' do inherit! :search_paths end end
Successful:
use_frameworks! target 'MyPodProject_Example' do pod 'MyPodProject', :path => '../' end
Then do the pod update (in terminal). This will create .xcworkspace
source share