How can I remove apps from Organizer in Xcode?

Xcode

Xcode Problem Overview


If I log in to my iOS Developer account to Xcode, it autoloads all my applications to the Organizer window (Window -> Organizer). Now, when I log out from my account, my apps still persist in Organizer. How can I remove them?

apps are still in Organizer

Xcode Solutions


Solution 1 - Xcode

Yes, you can delete all iOS Apps from Products.

So, go to this path:

~/Library/Developer/Xcode/Products

and remove any apps.

Be sure to remove any related archives in

~/Library/Developer/Xcode/Archives

which are divided by date archived.

If you have any difficulty to get the Library folder all you need to do is hit Command+Shift+G from the Mac desktop and type in ~/Library to temporarily access the Library directory in the Finder.

Solution 2 - Xcode

Just removing everything in ~/Library/Developer/Xcode/Products is not really removing everything.

When you open Organizer, it will load the app lists on the left panel. To remove the app lists on the left panel, goto:

~/Library/Developer/Xcode/Archives

and remove everything in there too.

Solution 3 - Xcode

The apps will sync with all your connected accounts, so if you remove them in archives they will be returning soon (see the activity circle in the left bottom corner of organizer when you open it again). You need to leave the team that is connected to these apps. This you can do by logging in to your or your client's developers site online and choose the team in the list that will show in the right top corner under the account you have logged into. Select the regarding team that is connected to the apps you want to remove and go to membership in the bottom you will see button that says "Leave Team" (it is in red). If you them remove the apps from the archives they will not return. You or your client needs to re-invite you to the team in order to return to an active state regarding this account you left.

Good luck!

Solution 4 - Xcode

You're looking at the list of apps for which you've created archives. You can remove an app from the list by removing all of its archives. Click on an app to see its archives. For each archive, you have two choices:

  1. Click the archive, then press your delete key to delete the archive.

  2. Right-click the archive, choose “Show in Finder”, and drag it to a different location, outside of Xcode's Archives folder.

Once you've deleted or moved all the archives, Xcode will remove the app from the list on the left.

Solution 5 - Xcode

There is no solution for this. The list in question is populated from your iTunesConnect account so, unless Apple allows us to delete spurious items from iTunesConnect all solutions on this page will be useless because the deleted files will come back as soon as you open the Organizer panel again.

Come one Apple!

================

2 years after I answered this, I must update it to say that Apple will delete these spurious apps for you if you contact them directly using one of your technical incidents. It will take weeks and it is done by exception, on request and is not guaranteed they will delete. You have to cry and explain why you want that deleted.

Solution 6 - Xcode

Following steps will help you to remove recent builds and application too.

  1. Xcode-> Preferences->Location
  2. Select derived data options
  3. From the folder, go to the previous folder, then you can find Products, Archives etc. Select and delete your required folders.

Solution 7 - Xcode

Enter these commands in the terminal

cd ~/Library/Developer/Xcode/Archives
rm -rf *

and all the archives will be removed

Solution 8 - Xcode

Launch a Terminal and copy cd ~/Library/Developer/Xcode/Products and ls to show all your products and then write rm -rf your.product.name

Solution 9 - Xcode

Found a method to permanently delete the apps from Organizer.

Xcode7.3 Update For remove particular project's DeriveData you just need to follow the following steps:

Go to Window -> Project -> choose the app you wish to delete.

You may refer to this: https://stackoverflow.com/questions/18933321/can-i-safely-delete-contents-of-xcode-derived-data-folder

Solution 10 - Xcode

> ~/Users/keyboarder/Library/Developer/Xcode/Archives

Delete from "Archives", find in folders filtered by date, the project which you want to delete. After that it will be disappear from organizer.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionhuyncView Question on Stackoverflow
Solution 1 - XcodeAhmadView Answer on Stackoverflow
Solution 2 - XcodeGeneCodeView Answer on Stackoverflow
Solution 3 - XcodeJeffrey SnijderView Answer on Stackoverflow
Solution 4 - Xcoderob mayoffView Answer on Stackoverflow
Solution 5 - XcodeDuckView Answer on Stackoverflow
Solution 6 - XcodeNrvView Answer on Stackoverflow
Solution 7 - XcodeGhulam RasoolView Answer on Stackoverflow
Solution 8 - XcodeOskarView Answer on Stackoverflow
Solution 9 - XcodeCheryl TanView Answer on Stackoverflow
Solution 10 - XcodeMihail SalariView Answer on Stackoverflow