Jerry
Jerry

Reputation: 11

iOS mobile build debug vs release

I'm into QA and have received an iOS .ipa file (a test build) to be tested.

Problem: The question is how do I make sure if this iOS build file is a debug build or a release build?

What I have tried: I do not have access to XCode. I have spent hours on the net searching for a relevant answer, to my above problem, but all in vain.

Your help will be highly appreciated.

You can directly mail me if required on: [email protected]

Thanks in advance.

Upvotes: 0

Views: 648

Answers (3)

Jochem
Jochem

Reputation: 2994

Debug and release are, as far as I know, just names that you can configure. I think you could even them to actually be the opposite. So I remain a bit in the dark about what you want to know exactly.

What may help you is to unpack the IPA. Basically it is a ZIP file, so you can rename it and unzip. Next you could run codesign -d -vvvv appname.app which gives you some information about the certificate that was used to sign it. This is important because for development and release different certificates are used. We mention the type of certificate in its name, perhaps your developers do so as well.

Upvotes: 0

Amar
Amar

Reputation: 13222

AFAIK, the only way you can know this is check with the developer. In Xcode, the Archive setting is by default set to Release mode. If the developer hasn't changed this it will be a Release build.

enter image description here

Hope that helps!

Upvotes: 1

alvaromb
alvaromb

Reputation: 4856

I'm pretty sure it's an Ad-Hoc build.

Upvotes: 1

Related Questions