Archives not showing up in Organizer for Xcode 4

前端 未结 20 2201
轮回少年
轮回少年 2020-11-28 18:12

I\'m trying to create an IPA in Xcode 4, much like the person who asked this question:

Xcode 4: create IPA file instead of .xcarchive

So--I got my Archive co

20条回答
  •  萌比男神i
    2020-11-28 18:58

    Had the same problem in Xcode 4.6.1 but with the twist that the Archive did show quickly in the Organizer window but suddenly disappeared.

    Solved this problem by commenting out the last two lines:

    echo "Moving Archive: $ARCHIVE_PATH to $PROJECT_DIR"
    #rm -rf "$PROJECT_DIR/XX.xcarchive"
    #mv -f "$ARCHIVE_PATH" "$PROJECT_DIR/XX.xcarchive"
    

    This via "Product - Scheme - Edit Scheme - Archive - Post Actions".

提交回复
热议问题