Skip to main content

How to Find the Bundle ID of an App on macOS or iOS

Updated over 10 months ago

Description

This article provides multiple methods for finding the Bundle ID for an app on macOS or iOS.

Locating Your Bundle ID

For iOS Apps Using a Computer When You Have The .ipa File:

  1. Unzip the .ipa file.

  2. Inside the unzipped folder, navigate to Payload > [AppName].app > Info.plist.

  3. Open the Info.plist file and look for the CFBundleIdentifier.

For macOS Apps:

Option 1: Finder (macOS)

  1. Locate the app in the Applications folder in Finder.

  2. Right-click the app and select Show Package Contents.

  3. Navigate to Contents > Info.plist.

  4. Open the Info.plist file using a text editor or a plist viewer.

  5. Look for the key CFBundleIdentifier – the value next to it is the app’s Bundle ID

Option 2: Use Terminal (macOS)

  1. Run the following command in Terminal: mdls -name kMDItemCFBundleIdentifier /Applications/AppName.app

    • Replace AppName.app with the actual name of the app. The output will show the app’s Bundle ID, e.g.: kMDItemCFBundleIdentifier = "com.apple.TextEdit"

Option 3: Use System Information (macOS)

  1. Press Option and click the Apple menu, then select System Information.

  2. Go to Software > Applications.

  3. Find the app in the list, and look at the Bundle Identifier column.

Did this answer your question?