0

I have tried to find a solution to this problem, however either the solutions people have given have not worked, or they are not explained well enough for me to understand.

In this thread: Class is implemented in both, One of the two will be used. Which one is undefined The answer is that there may be duplicate frameworks however my Pods-[AppName].debug.xcconfig file only lists it once.

In this thread: iOS Unit Testing: Class is implemented in both I am confused on how to do it. If someone can explain to me more in-depth what the solution is, that would be great!

Any other information regarding a solution to this problem would be greatly appreciated, thanks.

Andrew Wang
  • 55
  • 1
  • 3
  • 10
  • what are you asking, wang? need better explanation. also which class of yours is giving this problem and what have you tried? make it easy for us so we can help – staticVoidMan May 08 '18 at 03:51
  • @staticVoidMan I’m asking for a solution. Im using the BEMCheckBox class. I want a better explanation of the answer in thread 2. And i’ve tried the first thread. – Andrew Wang May 08 '18 at 04:11
  • Imho, if you describe your problem with details specific to your problem and **then** ask for an explanation, it would be alot better for you and the one answering. – staticVoidMan May 08 '18 at 05:19
  • @staticVoidMan Okay, in the second thread I have in my post, can you explain the answer more in-depth? It’s a little confusing to me. – Andrew Wang May 10 '18 at 13:38
  • Sure, let me take a look. – staticVoidMan May 11 '18 at 06:21
  • Ok, I tried but need more details. **1.** Please share the contents of your podfile. **2.** Are you creating your own library/framework or using one? **3.** Could you also share the contents of `Pods-[AppName].debug.xcconfig` (_You may sanitize the data with dummy names if required_) – staticVoidMan May 11 '18 at 06:51
  • @staticVoidMan would it be easier if we talked over skype or text or via some other communication platform? – Andrew Wang May 11 '18 at 19:50

1 Answers1

0
target 'MyApp' do
    pod 'Firebase'

    target 'MyAppTests' do
        inherit! :search_paths
    end
end

Moving target 'MyAppTests' do inside target 'MyApp' do and inherit search paths helped me.

Ivan Vavilov
  • 1,520
  • 1
  • 15
  • 28