Kent Boogaart
Kent Boogaart

Reputation: 178760

How does Xcode determine the IPA name?

I'm trying to figure out why my CI process is naming the output IPA the way it is. I've been told it's Xcode that makes this determination, but I cannot find any information on how.

To be clear, an IPA is being produced and it is correct in every way except the file name. I can rename the file, but I want the CI to produce the correct name because currently it's quite confusing (it has the wrong environment name in the file).

How does Xcode decide what to call the IPA?

Upvotes: 4

Views: 3069

Answers (3)

steveSarsawa
steveSarsawa

Reputation: 1679

IPA name is determined by Xcode (Till XCode 14) from

Your Project -> Project Target Dependency -> General -> Identity -> Display Name

e.g.

enter image description here

Your IPA name is determined from Display Name.

Upvotes: 4

Mallikarjun C
Mallikarjun C

Reputation: 145

IPA name is determined by Xcode from

which you can find in xcode project

Your Project -> Project Target Dependency -> General -> Identity -> Display Name

CFBundleDisplayName seach for this string in xcode project this is the display name of your iOS application

which you can modify any time

Upvotes: -2

manman
manman

Reputation: 2488

ipa name is determined by Product Name in Xcode Build Settings -> Packaging section. After changing the value of Product Name, you can see that the product name under the Products folder has been changed too. enter image description here enter image description here

Upvotes: 1

Related Questions