recently I'm refactoring a project which uses Cocoapods to manage dependencies (a lot of dependencies...), since Xcode 11 integrated Swift Package Manager, I want to migrate progressively some dependencies to SPM staring from the framework Alamofire.
After I removed the Alamofire from the Podfile (delete and run pod install) and added it into SPM, 
I got the error No such module 'Alamofire'. 
I've already tried to clean build and removed derived data but none of them can fix it. Did anyone have this problem too?


