zekel
zekel

Reputation: 9457

How do you show Xcode's build log? (Trying to verify if iPhone distribution build zip was created correctly.)

I'm trying to zip up my iPhone application for App Store distribution.

The distribution instructions suggest looking in the build log to check if the mobileprovision file was included, but I can't figure out how to show a build log.

Apple's instructions:

To confirm your build was successful, check for the following:

Open the Build Log detail view and confirm the presence of the "embedded.mobileprovision” file. This will take you to the line in the build log that shows the provisioning profile was successfully called.

Upvotes: 35

Views: 42621

Answers (6)

mmmmmm
mmmmmm

Reputation: 32626

At the bottom left of the build window (the one that gives the summary of the build) there are 4 icons.

  • A tick
  • Yellow triange
  • a few lines
  • Downward triangle

The first 3 toggle information. The third is the one you want it will open a full build log.

Upvotes: 3

peterk
peterk

Reputation: 5444

In IOS sdk 4+ in order to see the actual full log output it seems you have to go

Navigators->log

(pops up log navigator)

select the log in question (double click it)

then control click on the list of "messages" and select "expand all transcripts" from the context menu

Upvotes: 4

SRI
SRI

Reputation: 1532

alt text

alt text

alt text

alt text

i have highlighted what you need to change. select "All messages" instead of "Issues Only" and the follow the screenshots below.

Upvotes: 25

Jim Hollender
Jim Hollender

Reputation: 71

When you have the Build Results window showing, right-click on any item and select "Open These Latest Results as Transcript Text File".

Upvotes: 7

Stephen Canon
Stephen Canon

Reputation: 106117

Command-Shift-B to show the Build Results window. Click on a specific item in the results window to see the command line that actually executed.

Upvotes: 6

user180675
user180675

Reputation:

Check out the build results window.(the one that shows up with errors and whatnot) At the bottom of the window it should list all the commands that it used to build the app. You might also need to modify the project settings and the build settings to get what you want. Plus make sure you are building using the right build configuration (that gets me sometimes ).

Upvotes: 0

Related Questions