In my case, I have added test target after the pod init, install etc..
And I saw, adding test target block in podfile solved my problem.
Example;
target 'SampleProject' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for SampleProject
target 'SampleProjectTests' do
inherit! :search_paths
# Pods for testing
end
end
Post
Replies
Boosts
Views
Activity
In my case, I have added test target after the pod init, install etc..
And I saw, adding test target block in podfile solved my problem.
Example;
target 'SampleProject' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for SampleProject
target 'SampleProjectTests' do
inherit! :search_paths
# Pods for testing
end
end
In my case, I have added test target after the pod init, install etc..
And I saw, adding test target block in podfile solved my problem.
Example;
target 'SampleProject' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for SampleProject
target 'SampleProjectTests' do
inherit! :search_paths
# Pods for testing
end
end
In my case, I have added test target after the pod init, install etc..
And I saw, adding test target block in podfile solved my problem.
Example;
target 'SampleProject' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for SampleProject
target 'SampleProjectTests' do
inherit! :search_paths
# Pods for testing
end
end
In my case, I have added test target after the pod init, install etc..
And I saw, adding test target block in podfile solved my problem.
Example;
target 'SampleProject' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for SampleProject
target 'SampleProjectTests' do
inherit! :search_paths
# Pods for testing
end
end