Pablo Duque
Pablo Duque

Reputation: 383

Archived app wont appear on organizer after a few updates

I was compiling my app and archiving it correctly with no problem whatsoever. I added a charts library to the app, did some stuff with it, archived it fine but Apple didnt let me upload it because the library wasnt correctly referenced in the app. So I fixed that problem and tried to archive it again, but it just wont appear on the organizer.

How can I fix this?

Upvotes: 1

Views: 135

Answers (2)

BrianDev
BrianDev

Reputation: 69

I know this is an old item... However, I encountered the same issue today and tried all the above suggestions and still no luck.

Was able to work around it by using Finder and going to the build > iOS > archive folder of the application. Then right click on the .xcarchive file and open with Xcode.

Upvotes: 0

Simply try this steps:

  • Reopen your project
  • Clean Xcode & Remove derived data
  • Change build number & version number
  • Make archive now

Note:

  • You are able make archive earlier, so it could work perfect after this steps. Unless you have changed any settings in Xcode.

Edit:

  • Go to targets - build settings & find "Installation Directory". Make sure there is "$(LOCAL_APPS_DIR)" added.

  • Go to Edit Scheme -> Build tab, Make sure you have archive check box selected. Check image below: enter image description here

  • Go to Edit Scheme -> Archive tab & make sure the check box "Reveal in organizer selected"

  • See below image: enter image description here

Hope it will help you.

Upvotes: 1

Related Questions