This repository has been archived by the owner on Aug 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 135
cocoa-oauth/GCOAuth.h file not found #128
Comments
I have this too. @calebd Any problem with the podspec? |
Also, it seems to go away for Objective-C projects with "use_frameworks!" disabled. Any ideas? |
+1 |
I got the same problem +1 |
FWIW I noticed the header search paths for the |
This issue on CocoaPods' repository is relevant |
adding this to the end of my Podfile did the trick. Maybe it'll help someone else. post_install do |_|
work_dir = Dir.pwd
file_name = "#{work_dir}/Pods/Target\ Support\ Files/SimpleAuth/SimpleAuth.xcconfig"
config = File.read(file_name)
new_config = config.gsub(/HEADER_SEARCH_PATHS = "/, 'HEADER_SEARCH_PATHS = "${PODS_ROOT}" "')
File.open(file_name, 'w') { |file| file << new_config }
end |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
am facing the above issue, can you help me with this
The text was updated successfully, but these errors were encountered: