Please do not mark as duplicate (as regular no such module thread), I was not able to find a similar thread. Even tho I have researched for a while now.
I have updated a forked Framework to Swift 3. This Framework had a dependency, that needed to be updated as well.
I was not able to link :git => within the podspec file, that is why I have chosen to delete the dependency from the podspec file and implement both Frameworks within my podfile.
pod 'ASTextInputAccessoryView', :git => 'https://github.com/davidseek/ASTextInputAccessoryView.git' pod 'ASPlaceholderTextView', :git => 'https://github.com/davidseek/ASPlaceholderTextView.git' ASPlaceholderTextView is a dependency of ASTextInputAccessoryView.
Within my project I'm able to import ASPlaceholderTextView.
But within the Framework ASTextInputAccessoryView, import ASPlaceholderTextView throws missing module.
I have tried to add ASPlaceholderTextView within ASTextInputAccessoryView Target's General -> Linked Frameworks:
As well as ASTextInputAccessoryView Target's Build Phase ->
I have cleaned and restarted several times. What am I missing? Help is very appreciated.



