I have installed the Xcode 12 beta 4 version.
My app compiled without problems.
I got the compilation error:
Module compiled with Swift 5.2.4 cannot be imported by the Swift 5.3 compiler.
*Alamofire version: 5.2.2
*Xcode version: 12 beta 4
*Swift version:5.3
*Platform(s) running Alamofire: iOS
**macOS version running Xcode: 10.15.5
N/A
Yes, you need to recompile all of your dependencies when you move to a new version of the compiler. This is a common issue with clear solutions.
I deleted the Carthage folder and started from scratch (fetch, build, etc.), still getting this error...?
Silly me, I forgot to update the command line tools that Carthage uses to build Alamofire, from:

...to:

_(it always gets me, because it's once a year and I forget...)_
I did not find this command line tools option in Xcode 12. How can I find?
@emrdgrmnci
Xcode > Preferences... > Locations:

It really hasn't changed since Xcode 11 (or quite in a while, for that matter).
Most helpful comment
I deleted the Carthage folder and started from scratch (fetch, build, etc.), still getting this error...?Silly me, I forgot to update the command line tools that Carthage uses to build Alamofire, from:
...to:
_(it always gets me, because it's once a year and I forget...)_