Open lukenewman opened 9 years ago
I also had the error Could not find file "VENUser.h"
at the import
statement in VENUser+VenmoSDK.h
. I changed it to #import "VENCore/VENUser.h"
and both errors were resolved. Maybe this is something that should be changed in the source?
Could you post your Podfile and perhaps Bridging header if you have any(Yeah I did try without the bridging header but it didnt work )?
How are you importing the SSKeychain, I have it only downloaded with pods but didnt do anything with them I have same issue but your solution doesnt help unfortunately :(
Same issue here.
Thanks for reporting this issue. This was indeed a case of bad header importing on our end that worked when the SDK was compiled as a static library via Cocoapods. Unfortunately this falls down when a dynamic library is created. This will be fixed in an upcoming release.
has this been fixed?
Any traction on this or a possible work around to get this pod working?
@hyperspacemark Any update on this issue? Still getting it and @lukenewman's fix via #import "VENCore/VENUser.h"
works.
I'm using Swift for my project, and I get the above error on the
import
statement inAppDelegate
. Xcode recognizes the module namebut gives the error once it's actually there.
I have the correct line in my Podfile and the
use_frameworks!
flag. I've linked theCMDQueryStringSerialization
,SSKeychain
,VENCore
, andVenmo-iOS-SDK
frameworks as well. I am not using any sort of prefix header.Any ideas?