How to get bundle id of iOS app - either using .ipa file or app installed on iPhone How to get bundle id of iOS app - either using .ipa file or app installed on iPhone ios ios

How to get bundle id of iOS app - either using .ipa file or app installed on iPhone


To find out the bundle id of any existing app:

  1. Connect your iOS device to your Mac with iOS wire
  2. Open the Console app on Mac
  3. Select your device under the Devices heading (top left)
  4. Enter the name of your app in the search bar
  5. Now launch the app in your iOS device
  6. You will see the first log in the console like SpringBoard Bootstrapping com.xxxx.xxx.kids with intent foreground-interactive

Screenshot of the steps


  • Extract the contents of .ipa file using any app,this will give you a Payload folder.There will be only a single file inside the Payload Folder
  • Right Click on file -> Show Package content.This will redirect you to a new finder window with lot of files
  • Open info.plist file using either Xcode or textEdit there you can find the bundle id

Cheers


If your app is in the App Store.
1) Find the app online (Google for the iTunes link). For this example we use Apple Pages: https://itunes.apple.com/app/pages/id361309726?mt=8.
2) Copy the number after the id in the URL. (Here: 361309726).
3) Open https://itunes.apple.com/lookup?id=361309726 where you replace the ID with the one you looked up.
4) Search the output for "bundleID". In this example it looks like this (next to a bunch of other data): "bundleId":"com.apple.Pages". So for Apple, the bundle ID is com.apple.Pages.