Using AVFoundation.framework

I am trying to use adamcichy/SwiftySound in Xcode 11.3 and it says to

"Drop the Sound.swift file into your project, link against AVFoundation.framework and you are ready to go."

I downloaded Sound.swift, put it in my project but I can't
Code Block
import AVFoundation.framework
in my ViewController.swift.


but I can't

Code Block
import AVFoundation.framework

in my ViewController.swift.
You usually write import AVFoundation. No .framework is needed.
Using AVFoundation.framework
 
 
Q