am using CocoaPods 1.2 and i have a project with 2 targets, one is the main iPhone app and the other one is cocoa touch framework library.
I have no problem adding pods to my iphone target, my main problem is that i cannot add any pods to that other shared library target.
here is an example of my pod file:
platform :ios, '9.0'
target 'MyApp' do
use_frameworks!
pod 'EVReflection'
end
target 'MyLibrary' do
use_frameworks!
pod 'EVReflection'
end
adding pods to the main app MyApp works just fine but not to the other target, any ideas why this happens?
i have tried to use abstract_target but with no luck. i even tried to deintegrate and reintegrate but also not working.
the problem only happens when trying to add pods to universal framework library, adding pods to any other type of targets work just fine.
Any help would be appreciated.