In this article, we will cover How to quickly find an iOS app bundle ID. I am Navjot Singh your host. Let’s first cover What is bundleId ? And then move on to finding bundleId of an app.
What is an iOS App Bundle ID ?
Bundle ID is an identifier for each app published on App Store and set when creating an app.
Every iOS application requires a bundle ID to work and it needs to be unique if the developer wants to publish it on App Store.
Example: com.mrvirk.test.app
You can not directly look up and find the bundle ID of an App in the Apple App Store unlike Google playstore for Android where it provides applications package name (Android equivalent of Bundle ID) in the app’s playstore link.
So, to find an iOS Apps bundle ID you need to take couple steps as covered below –
Steps to find the bundle ID for an iOS app ?
To find the bundle ID, you can use one of the below listed solutions –
1- Find the bundle ID from the Text file
Steps
Step 1: Search for the App Name on Google Search using your Desktop browser like Chrome, Firefox etc and open apps itunes/app store link.
Example: Search – Yahoo News App store.
This will give you app’s link – https://itunes.apple.com/us/app/yahoo-news-live-breaking-news/id304158842?mt=8 (here we have Yahoo News Apps link).
Step 2: Now, copy the number after id in the URL, which is 304158842 in the example above.
Step 3: Open a new browser window, and go to this link and add the id number in place of the question marks and a country code depending on your location (or just use what we have in the example) and refresh the page.
https://itunes.apple.com/lookup?id=??country=??
Example: https://itunes.apple.com/lookup?id=304158842&country=us
This will prompt you to download a text file.
Step 4: Save Text File. The default name of the file is 1.txt.
Open the file in a text editor, and then search for bundleId. Here is an example:
“bundleId”:”com.yahoo.frontpage”
So, here we found the bundle ID for the Yahoo News App which is com.yahoo.frontpage
Pro Tip: You can also review other relevant information in this text file, such as minimum OS version, language code, supported devices, and apps release information.
2: Find App bundle ID from the .ipa file
Step 1: Copy the .ipa file, and then change the file name extension to .zip
Example: Rename YahooNews.ipa as YahooNews.zip
Expand the .zip file to a folder, and then search for the iTunesMetadata.plist file in the folder
Open the iTunesMetadata.plist file using a text editor, and then search for softwareVersionBundleId
This will give you the applications bundle id.
Hope this article helped solve your problem, please support the content by sharing it with friends and family on social network of your choice.
Other Search queries this article has answers to:
Apps Bundle ID in iOS, How do I find my iOS App ID? How do I find my IPA bundle ID? How do I get an Apple bundle ID? What is the bundle identifier XCode? What is an app bundle?
Related Tags: ios bundle id, bundle id finder, app bundle id, apple bundle id, bundle id ios, ios app bundle id, how to find app bundle id, ios bundle id lookup, find bundle id for ios app, apple app bundle id, ios get bundle id, app store bundle id, ios package name, get bundle id of ios app
More articles