Skip to main content
Add our MCP Server to help you find your bundle ID.

iOS: Find Your Bundle ID

App Store Connect

  1. Go to App Store Connect
  2. Click on My Apps
  3. Select your app
  4. In the left menu, click App Information
  5. Under General Information, you’ll see your Bundle ID
com.yourcompany.yourapp

Info.plist

  1. Open your Flutter or React Native project folder
  2. Go to: ios/Runner/Info.plist
  3. Look for:
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
If it shows $(PRODUCT_BUNDLE_IDENTIFIER), the actual value is defined in Xcode.

Xcode

  1. Open the project in Xcode
  2. Click the blue project icon in the navigator (top-left)
  3. Select the main app target under Targets
  4. Go to the General tab
  5. Under the Identity section, you’ll see Bundle Identifier
com.example.myapp
The Bundle ID must be unique for each app on the App Store.

Android: Find Your Application ID

AndroidManifest.xml

  1. Go to: android/app/src/main/AndroidManifest.xml
  2. Look at the top:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.yourcompany.yourapp">
  1. The value of package is your Application ID.

build.gradle (App-level)

  1. Go to: android/app/build.gradle
  2. Find:
defaultConfig {
  applicationId "com.yourcompany.yourapp"
}
  1. This is the Application ID used at build time.

Google Play Store URL

The easiest way to find an Android app’s bundle ID is from its Play Store URL:
https://play.google.com/store/apps/details?id=org.wikipedia&hl=en_US
The id parameter is the Application ID: org.wikipedia

Google Play Console

  1. Go to Google Play Console
  2. Open your app
  3. Click Setup > App integrity
  4. Under App signing, you’ll see your Package name — that’s the Application ID.
The Application ID (Android) and Bundle ID (iOS) are often called “package name” in various places.