Import instructions for Venmo iOS SDK in swift for embedded frameworks

I am trying to implement Venmo-iOS-SDK into my application using CocoaPods. Inside mine Podfile

, I have an operator use_frameworks!

to make all dependencies in embedded frameworks. Once launched pod install

, Venmo-iOS-SDK appears to be properly installed in CocoaPods, but I can't figure out what to put at the top of my files as an operator import

.

Other modules I've worked with don't have a dash in their name, so I can just put import PodName

. However, it import Venmo-iOS-SDK

runs a compile-time error stating that "Consecutive statements on a line must be separated by a character". ".

I've tried all of the following statements and didn't work:

import Venmo-iOS-SDK

import Venmo

import VenmoiOSSDK

import VenmoSDK

Does anyone know what to import for this environment in swift or what the import statement looks like for other pods with -

in their name?

+3


source to share


1 answer


I will try below option



import Venmo_iOS_SDK

      

+3


source







All Articles