How to obtain Bundle ID for an IOS App when I have a '.ipa' file for the app installed on my iPAD

前提是你 提交于 2019-12-04 11:42:49

You can get the bundle Identifier by opening the .ipa file using Archive Utility on your mac. Once you open the ipa with Archive Utility. You see app directory.

Then go to Payload -> App file(your appname)( Right click to show package contents)-> open Info.plist-> Look for Bundle Identifier value.

try to use this gem: bundleid_helper

1.install this gem

gem install bundleid_helper
  1. use this gem to get bundle id

    bundleid name.ipa

bundlerid_helper

was referring to another website for the same. Reposting the answer from the other website

  1. Copy the .ipa file and rename the extension to .zip. (So e.g. Pages.ipa will become Pages.zip)
  2. Unzip the zip file. You will get a new folder named like the zip file.
  3. Search for the file iTunesMetadata.plist in that new folder.
  4. Open the file with a text editor and search for softwareVersionBundleId. For Pages this looks like this and is com.apple.Pages:
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!