Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I find the version number of an iPhone app from the IPA?

Tags:

We're trying out a new way of specifying version numbers for our app. I'd like to be able to check that the IPAs we're building have the version numbers we want. How do I get the version number out of the IPA?

Note - I'm not asking for a way of finding it from code inside the app; I've got a terminal open and the IPA file is built, and I want to know what to look for inside the IPA file.

like image 411
Simon Avatar asked Jul 03 '12 08:07

Simon


People also ask

How do I find app version number?

Android System SettingsOnce in Settings, tap Apps and notifications (or your phone manufacturer's name it). When you're in there, tap See all xyz apps (where xyz is the number of apps you have installed). Now scroll down until you find the app you want to find the version for. Then tap it in the list.

What is IPA for iOS app?

An IPA (iOS App Store package) is an application archive file that contains an iOS app. In simple words, it is a file that can be installed on iOS devices and used as an application.


1 Answers

Do the below from your terminal

    //Unzip the file      unzip YourIPAFile.ipa      //Open payload folder     cd Payload      //Open your .app file     cd yourApp.app      //Open the plist file     open Info.plist 

You can find the version under Bundle version keyenter image description here

like image 177
sElanthiraiyan Avatar answered Sep 16 '22 17:09

sElanthiraiyan