Delete duplicate scheme from Xcode

Viewed 6320

My app having multiple target and accidentally i have duplicate one of my target So Is there any way to delete that duplicate scheme from the XCode scheme list.

3 Answers

This happened to me as well, but with regard to working in a Workspace. After trying to add a Today Extension to my workspace, Xcode autogenerated a scheme for my Xcode Project, resulting in duplicate scheme names, which then looked like this:

<App Name> (<App Name> Workspace)
<App Name> (<App Name> Xcode Project)

Since I'm working in a cocoapod architecture, I deleted the Xcode Project scheme, and everything is back to normal, app works fine, etc. Wanted to add that since I hadn't seen anyone have that specific duplicate name problem.

Related