Multiple Xcode version?

Hello. I’m iOS Developer using circle ci & Fastlane
My Fastlane occurs this error when build on circle ci. It works on my machine.

[04:10:58]: Exit status: 65
[04:10:58]: 
[04:10:58]: Maybe the error shown is caused by using the wrong version of Xcode
[04:10:58]: Found multiple versions of Xcode in '/Applications/'
[04:10:58]: Make sure you selected the right version for your project
[04:10:58]: This build process was executed using '/Applications/Xcode-15.0.1.app'
[04:10:58]: If you want to update your Xcode path, either
[04:10:58]: 
[04:10:58]: - Specify the Xcode version in your Fastfile
[04:10:58]: ▸ xcversion(version: "8.1") # Selects Xcode 8.1.0
[04:10:58]: 
[04:10:58]: - Specify an absolute path to your Xcode installation in your Fastfile
[04:10:58]: ▸ xcode_select "/Applications/Xcode8.app"
[04:10:58]: 
[04:10:58]: - Manually update the path using
[04:10:58]: ▸ sudo xcode-select -s /Applications/Xcode.app
[04:10:58]: 
+------------------------------------------------+
|               Build environment                |
+---------------+--------------------------------+
| xcode_path    | /Applications/Xcode-15.0.1.app |
| gym_version   | 2.219.0                        |
| export_method | app-store                      |
| sdk           | iPhoneOS17.0.sdk               |
+---------------+--------------------------------+

and I checked there are two Xcode in Application Folder. Xcode-15.0.1.app, Xcode.app
How can I remove Xcode.app on circle ci?

Most probably the Xcode.app is a link to the Xcode-15.0.1.app folder.

What fastlane tries to tell you is that because you haven’t locked down the version of xcode in your build, you might be having issues. It is a best practice to lock down xcode (and all tools in your tool chain}, but is probably not going to solve your problem.

For people to help you, you should report the error that was displayed before this help message.